fix plugin configuration

This commit is contained in:
Jeremy Long
2017-11-27 22:35:07 -05:00
parent ae128c38ec
commit 19c223161d

10
pom.xml
View File

@@ -317,9 +317,13 @@ Copyright (c) 2012 - Jeremy Long
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId> <artifactId>versions-maven-plugin</artifactId>
<version>2.4</version> <version>2.5</version>
<executions> <executions>
<execution> <execution>
<phase>post-clean</phase>
<goals>
<goal>update-properties</goal>
</goals>
<configuration> <configuration>
<allowSnapshots>false</allowSnapshots> <allowSnapshots>false</allowSnapshots>
<excludes> <excludes>
@@ -328,10 +332,6 @@ Copyright (c) 2012 - Jeremy Long
<exclude>org.apache.commons:commons-lang3</exclude> <exclude>org.apache.commons:commons-lang3</exclude>
</excludes> </excludes>
</configuration> </configuration>
<phase>post-clean</phase>
<goals>
<goal>update-properties</goal>
</goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>