Do not deploy root pom

The `initializr` root pom is only used by the build and should not be
deployed or made available when releasing.
This commit is contained in:
Stephane Nicoll 2019-10-07 12:06:38 -05:00
parent bba853fa6c
commit ec2aec60ff

14
pom.xml
View File

@ -61,6 +61,20 @@
<module>initializr-web</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<inherited>false</inherited>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>default</id>