fix potential maven profile jdk issue working with IDE issue
This commit is contained in:
parent
1b31bb5551
commit
be900d20bd
|
|
@ -761,7 +761,7 @@
|
|||
<profile>
|
||||
<id>curator5</id>
|
||||
<activation>
|
||||
<jdk>[1.17,)</jdk>
|
||||
<jdk>1.17</jdk>
|
||||
</activation>
|
||||
<properties>
|
||||
<zookeeper_version>3.7.0</zookeeper_version>
|
||||
|
|
|
|||
|
|
@ -287,12 +287,6 @@
|
|||
<version>${project.version}</version>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.dubbo</groupId>
|
||||
<artifactId>dubbo-dependencies-zookeeper-curator5</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
|
|
|
|||
|
|
@ -33,8 +33,7 @@
|
|||
<maven.compiler.target>8</maven.compiler.target>
|
||||
<skip_maven_deploy>true</skip_maven_deploy>
|
||||
<curator.test.version>4.2.0</curator.test.version>
|
||||
<zookeeper.version>3.4.13</zookeeper.version>
|
||||
<curator5.version>4.2.0</curator5.version>
|
||||
<zookeeper.test.version>3.4.13</zookeeper.test.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>
|
||||
|
|
@ -58,12 +57,12 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.zookeeper</groupId>
|
||||
<artifactId>zookeeper</artifactId>
|
||||
<version>${zookeeper.version}</version>
|
||||
<version>${zookeeper.test.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.curator</groupId>
|
||||
<artifactId>curator-framework</artifactId>
|
||||
<version>${curator5.version}</version>
|
||||
<version>${curator.test.version}</version>
|
||||
</dependency>
|
||||
<!-- tar.gz -->
|
||||
<dependency>
|
||||
|
|
@ -89,12 +88,11 @@
|
|||
<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.version>3.6.0</zookeeper.version>
|
||||
<curator5.version>5.1.0</curator5.version>
|
||||
<zookeeper.test.version>3.6.0</zookeeper.test.version>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
|
|
|||
Loading…
Reference in New Issue