Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
56374ff7
Commit
56374ff7
authored
Aug 15, 2017
by
Madhan Neethiraj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-2052: updated packaing to exclude junit jar
parent
fae00825
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
1 deletion
+31
-1
pom.xml
pom.xml
+30
-0
pom.xml
webapp/pom.xml
+1
-1
No files found.
pom.xml
View file @
56374ff7
...
...
@@ -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>
...
...
webapp/pom.xml
View file @
56374ff7
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment