fix java 17 zookeeper test module
This commit is contained in:
parent
07acc669e7
commit
fbbb7a32da
|
|
@ -33,7 +33,8 @@
|
|||
<maven.compiler.target>8</maven.compiler.target>
|
||||
<skip_maven_deploy>true</skip_maven_deploy>
|
||||
<curator.test.version>4.2.0</curator.test.version>
|
||||
<zookeeper.test.version>3.4.13</zookeeper.test.version>
|
||||
<zookeeper.version>3.4.13</zookeeper.version>
|
||||
<curator5.version>4.2.0</curator5.version>
|
||||
<commons.compress.version>1.20</commons.compress.version>
|
||||
<junit.platform.launcher.version>1.6.2</junit.platform.launcher.version>
|
||||
<commons.exec.version>1.3</commons.exec.version>
|
||||
|
|
@ -57,12 +58,12 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.zookeeper</groupId>
|
||||
<artifactId>zookeeper</artifactId>
|
||||
<version>${zookeeper.test.version}</version>
|
||||
<version>${zookeeper.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.curator</groupId>
|
||||
<artifactId>curator-framework</artifactId>
|
||||
<version>${curator.test.version}</version>
|
||||
<version>${curator5.version}</version>
|
||||
</dependency>
|
||||
<!-- tar.gz -->
|
||||
<dependency>
|
||||
|
|
@ -88,11 +89,12 @@
|
|||
<profile>
|
||||
<id>curator5</id>
|
||||
<activation>
|
||||
<jdk>1.17</jdk>
|
||||
<jdk>[1.17,)</jdk>
|
||||
</activation>
|
||||
<properties>
|
||||
<curator.test.version>5.1.0</curator.test.version>
|
||||
<zookeeper.test.version>3.6.0</zookeeper.test.version>
|
||||
<zookeeper.version>3.6.0</zookeeper.version>
|
||||
<curator5.version>5.1.0</curator5.version>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
|
|
|||
Loading…
Reference in New Issue