Browse Source

Make the top POM not deploy like the submodules.

master
Drew Short 6 years ago
parent
commit
264aacb873
  1. 22
      parent/pom.xml
  2. 4
      pom.xml

22
parent/pom.xml

@ -238,6 +238,7 @@
</dependency>
</dependencies>
</dependencyManagement>
<build>
<resources>
<resource>
@ -261,6 +262,7 @@
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
@ -283,6 +285,7 @@
</excludes>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<plugin>
@ -295,8 +298,14 @@
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- disable surefire for java tests-->
<plugin>
@ -387,6 +396,19 @@
</execution>
</executions>
</plugin>
<!-- Source Management -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Resource Management -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>

4
pom.xml

@ -14,6 +14,10 @@
<name>Sothr Software</name>
</organization>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<modules>
<module>parent</module>
<module>hash</module>

Loading…
Cancel
Save