Commit f5c59710 by Sarath Subramanian

ATLAS-2271: Skip deploy of build-tools module during - mvn deploy

parent 4a8777b4
...@@ -26,4 +26,18 @@ ...@@ -26,4 +26,18 @@
<description>Apache Atlas Build Tools like Checkstyle</description> <description>Apache Atlas Build Tools like Checkstyle</description>
<version>1.0</version> <version>1.0</version>
<packaging>jar</packaging> <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> </project>
...@@ -287,6 +287,15 @@ atlas.graph.index.search.solr.zookeeper-session-timeout=60000 ...@@ -287,6 +287,15 @@ atlas.graph.index.search.solr.zookeeper-session-timeout=60000
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>
......
...@@ -163,6 +163,12 @@ ...@@ -163,6 +163,12 @@
<type>test-jar</type> <type>test-jar</type>
<version>${project.version}</version> <version>${project.version}</version>
<scope>test</scope> <scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
</dependencies> </dependencies>
</profile> </profile>
...@@ -182,6 +188,12 @@ ...@@ -182,6 +188,12 @@
<type>test-jar</type> <type>test-jar</type>
<version>${project.version}</version> <version>${project.version}</version>
<scope>test</scope> <scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
</dependencies> </dependencies>
</profile> </profile>
......
...@@ -84,6 +84,12 @@ ...@@ -84,6 +84,12 @@
<dependency> <dependency>
<groupId>org.apache.atlas</groupId> <groupId>org.apache.atlas</groupId>
<artifactId>atlas-common</artifactId> <artifactId>atlas-common</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment