Skip to content

Commit

Permalink
ci: extract version property for surefire plugins (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgb authored Dec 13, 2023
1 parent 5483b44 commit 0fa5b8e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kafka.version>3.6.1</kafka.version>
<kafka.scala.version>2.13</kafka.scala.version>
<maven-surefire.version>3.2.3</maven-surefire.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -109,13 +110,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
<version>${maven-surefire.version}</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.2.3</version>
<version>${maven-surefire.version}</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 0fa5b8e

Please sign in to comment.