2
0

Try to fix maven-release-plugin inside a subdir.

This commit is contained in:
Maarten Billemont 2015-04-18 15:30:31 -04:00
parent aeca5e18fe
commit 7e11f01331

View File

@ -33,6 +33,28 @@
</modules>
</profile>
</profiles>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
<autoVersionSubmodules>true</autoVersionSubmodules>
<developmentVersion>GIT-SNAPSHOT</developmentVersion>
<localCheckout>true</localCheckout>
<preparationGoals>clean install</preparationGoals>
<updateBranchVersions>true</updateBranchVersions>
<updateWorkingCopyVersions>false</updateWorkingCopyVersions>
<branchName>${project.version}-maint</branchName>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<!-- REMOTE ARTIFACT REPOSITORIES -->
<repositories>