You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ma...@apache.org on 2017/08/17 02:23:17 UTC

atlas git commit: ATLAS-2052: updated packaing to exclude junit jar

Repository: atlas
Updated Branches:
  refs/heads/master fae008252 -> 56374ff7e


ATLAS-2052: updated packaing to exclude junit jar


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/56374ff7
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/56374ff7
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/56374ff7

Branch: refs/heads/master
Commit: 56374ff7e3a6faa3e444db1ba3fa14905f356dc9
Parents: fae0082
Author: Madhan Neethiraj <ma...@apache.org>
Authored: Tue Aug 15 15:16:57 2017 -0700
Committer: Madhan Neethiraj <ma...@apache.org>
Committed: Wed Aug 16 18:30:48 2017 -0700

----------------------------------------------------------------------
 pom.xml        | 30 ++++++++++++++++++++++++++++++
 webapp/pom.xml |  2 +-
 2 files changed, 31 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/56374ff7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 8b9eee6..db71c02 100644
--- a/pom.xml
+++ b/pom.xml
@@ -834,6 +834,10 @@
                         <groupId>com.google.guava</groupId>
                         <artifactId>guava</artifactId>
                     </exclusion>
+                    <exclusion>
+                        <groupId>junit</groupId>
+                        <artifactId>junit</artifactId>
+                    </exclusion>
                 </exclusions>
             </dependency>
 
@@ -1152,6 +1156,10 @@
                         <artifactId>*</artifactId>
                         <groupId>org.mortbay.jetty</groupId>
                     </exclusion>
+                    <exclusion>
+                        <groupId>junit</groupId>
+                        <artifactId>junit</artifactId>
+                    </exclusion>
                 </exclusions>
             </dependency>
 
@@ -1160,6 +1168,12 @@
                 <artifactId>hbase-server</artifactId>
                 <version>${hbase.version}</version>
                 <classifier>tests</classifier>
+                <exclusions>
+                    <exclusion>
+                        <groupId>junit</groupId>
+                        <artifactId>junit</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
 
             <dependency>
@@ -1175,6 +1189,10 @@
                         <groupId>tomcat</groupId>
                         <artifactId>*</artifactId>
                     </exclusion>
+                    <exclusion>
+                        <groupId>junit</groupId>
+                        <artifactId>junit</artifactId>
+                    </exclusion>
                 </exclusions>
             </dependency>
 
@@ -1388,12 +1406,24 @@
                 <groupId>org.apache.atlas</groupId>
                 <artifactId>atlas-hbase-client-shaded</artifactId>
                 <version>${project.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>junit</groupId>
+                        <artifactId>junit</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
 
             <dependency>
                 <groupId>org.apache.atlas</groupId>
                 <artifactId>atlas-hbase-server-shaded</artifactId>
                 <version>${project.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>junit</groupId>
+                        <artifactId>junit</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
 
             <dependency>

http://git-wip-us.apache.org/repos/asf/atlas/blob/56374ff7/webapp/pom.xml
----------------------------------------------------------------------
diff --git a/webapp/pom.xml b/webapp/pom.xml
index 42981e0..2a06027 100755
--- a/webapp/pom.xml
+++ b/webapp/pom.xml
@@ -511,7 +511,7 @@
                     <packagingExcludes>
                         <!-- Titan and hbase jars should be excluded because an uber jar with shaded dependencies is created.
                         But mvn 3.3.x includes them for some reason. So, excluding them explicitly here -->
-                        WEB-INF/lib/titan*.jar,WEB-INF/lib/hbase*.jar,${packages.to.exclude}
+                        WEB-INF/lib/titan*.jar,WEB-INF/lib/hbase*.jar,WEB-INF/lib/junit*.jar,${packages.to.exclude}
                     </packagingExcludes>
                 </configuration>
             </plugin>