Repository: atlas Updated Branches: refs/heads/master 4a8777b40 -> f5c597103
ATLAS-2271: Skip deploy of build-tools module during - mvn deploy Project: http://git-wip-us.apache.org/repos/asf/atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/f5c59710 Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/f5c59710 Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/f5c59710 Branch: refs/heads/master Commit: f5c5971032143f864268b8476b528ce89abf1b98 Parents: 4a8777b Author: Sarath Subramanian <[email protected]> Authored: Mon Nov 20 19:43:11 2017 -0800 Committer: Sarath Subramanian <[email protected]> Committed: Mon Nov 20 19:43:11 2017 -0800 ---------------------------------------------------------------------- build-tools/pom.xml | 14 ++++++++++++++ distro/pom.xml | 9 +++++++++ repository/pom.xml | 12 ++++++++++++ webapp/pom.xml | 6 ++++++ 4 files changed, 41 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/atlas/blob/f5c59710/build-tools/pom.xml ---------------------------------------------------------------------- diff --git a/build-tools/pom.xml b/build-tools/pom.xml index 0f17546..9cc7774 100644 --- a/build-tools/pom.xml +++ b/build-tools/pom.xml @@ -26,4 +26,18 @@ <description>Apache Atlas Build Tools like Checkstyle</description> <version>1.0</version> <packaging>jar</packaging> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.7</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + </project> http://git-wip-us.apache.org/repos/asf/atlas/blob/f5c59710/distro/pom.xml ---------------------------------------------------------------------- diff --git a/distro/pom.xml b/distro/pom.xml index 0c4e302..eea256d 100644 --- a/distro/pom.xml +++ b/distro/pom.xml @@ -287,6 +287,15 @@ atlas.graph.index.search.solr.zookeeper-session-timeout=60000 </execution> </executions> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.7</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/atlas/blob/f5c59710/repository/pom.xml ---------------------------------------------------------------------- diff --git a/repository/pom.xml b/repository/pom.xml index f31cf16..e24122e 100755 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -163,6 +163,12 @@ <type>test-jar</type> <version>${project.version}</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies> </profile> @@ -182,6 +188,12 @@ <type>test-jar</type> <version>${project.version}</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies> </profile> http://git-wip-us.apache.org/repos/asf/atlas/blob/f5c59710/webapp/pom.xml ---------------------------------------------------------------------- diff --git a/webapp/pom.xml b/webapp/pom.xml index 3e11b21..b4a96d3 100755 --- a/webapp/pom.xml +++ b/webapp/pom.xml @@ -84,6 +84,12 @@ <dependency> <groupId>org.apache.atlas</groupId> <artifactId>atlas-common</artifactId> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> </dependency> <dependency>
