Skip to content

Commit

Permalink
Use properties for version numbers
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Hill <[email protected]>
  • Loading branch information
njhill committed Nov 21, 2023
1 parent 2d2cc53 commit a07d2ff
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@
<bouncycastle-version>1.74</bouncycastle-version>
<junit-version>5.10.0</junit-version>

<zookeeper-version>3.7.2</zookeeper-version>
<curator-version>5.3.0</curator-version>

<dockerhome>${project.build.directory}/dockerhome</dockerhome>
<skipTests>false</skipTests>
</properties>
Expand Down Expand Up @@ -459,7 +462,7 @@
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-test</artifactId>
<version>5.3.0</version>
<version>${curator-version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -528,12 +531,12 @@
<!-- override litelinks' versions with newer to avoid CVE -->
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.7.2</version>
<version>${zookeeper-version}</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>5.3.0</version>
<version>${curator-version}</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit a07d2ff

Please sign in to comment.