Skip to content

Commit dc7f009

Browse files
committed
Handle versions of plugin dependencies as variables
Signed-off-by: Julien Nioche <julien@digitalpebble.com>
1 parent 7561aba commit dc7f009

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,16 @@
2626
<urlfrontier.port>7071</urlfrontier.port>
2727
<maven.test.skip>true</maven.test.skip>
2828
<slf4j.version>2.0.3</slf4j.version>
29+
<version.maven-surefire-plugin>3.5.0</version.maven-surefire-plugin>
30+
<version.maven-deploy-plugin>3.1.3</version.maven-deploy-plugin>
2931
</properties>
3032

3133
<build>
3234
<plugins>
3335
<plugin>
3436
<groupId>org.apache.maven.plugins</groupId>
3537
<artifactId>maven-deploy-plugin</artifactId>
36-
<version>3.1.3</version>
38+
<version>${version.maven-deploy-plugin}</version>
3739
<configuration>
3840
<skip>true</skip>
3941
</configuration>
@@ -42,7 +44,7 @@
4244
<plugin>
4345
<groupId>org.apache.maven.plugins</groupId>
4446
<artifactId>maven-surefire-plugin</artifactId>
45-
<version>3.5.0</version>
47+
<version>${version.maven-surefire-plugin}</version>
4648
<configuration>
4749
<systemPropertyVariables>
4850
<urlfrontier.host>${urlfrontier.host}</urlfrontier.host>

0 commit comments

Comments
 (0)