You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2015/03/28 01:05:07 UTC

[16/19] incubator-kylin git commit: to prevent from generating *.RSA, *.SF, *.DSA, the fix for kylin issue 621

to prevent from generating *.RSA, *.SF, *.DSA, the fix for kylin issue 621

to prevent from generating *.RSA, *.SF, *.DSA, the fix for kylin issue 621

Project: http://git-wip-us.apache.org/repos/asf/incubator-kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kylin/commit/df0123bc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/df0123bc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/df0123bc

Branch: refs/heads/staging
Commit: df0123bc84263580334469dc420e96a7700b90de
Parents: 05b0b1a
Author: IT-DONG <wa...@sina.cn>
Authored: Wed Mar 25 18:42:09 2015 +0800
Committer: IT-DONG <wa...@sina.cn>
Committed: Wed Mar 25 18:42:09 2015 +0800

----------------------------------------------------------------------
 job/pom.xml | 27 ++++++++++++---------------
 1 file changed, 12 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/df0123bc/job/pom.xml
----------------------------------------------------------------------
diff --git a/job/pom.xml b/job/pom.xml
index 1fff5af..bfc73bb 100644
--- a/job/pom.xml
+++ b/job/pom.xml
@@ -261,24 +261,21 @@
                         </goals>
                         <configuration>
                             <minimizeJar>false</minimizeJar>
+                            <shadedArtifactAttached>true</shadedArtifactAttached>
+                            <shadedClassifierName>job</shadedClassifierName>
+                            <filters>
+                                <filter>
+                                    <artifact>*:*</artifact>
+                                    <excludes>
+                                        <exclude>META-INF/*.SF</exclude>
+                                        <exclude>META-INF/*.DSA</exclude>
+                                        <exclude>META-INF/*.RSA</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
                         </configuration>
                     </execution>
                 </executions>
-
-                <configuration>
-                    <shadedArtifactAttached>true</shadedArtifactAttached>
-                    <shadedClassifierName>job</shadedClassifierName>
-                    <filters>
-                        <filter>
-                            <excludes>
-                                <exclude>META-INF/*.SF</exclude>
-                                <exclude>META-INF/*.DSA</exclude>
-                                <exclude>META-INF/*.RSA</exclude>
-                            </excludes>
-                        </filter>
-                    </filters>
-                </configuration>
-
             </plugin>
         </plugins>
     </build>