Skip to content

Commit

Permalink
support ozone 1.2.x (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
captainzmc authored Dec 21, 2021
1 parent 2deb625 commit 5923b00
Showing 1 changed file with 24 additions and 9 deletions.
33 changes: 24 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,17 @@
<log4j.version>2.5</log4j.version>

<alluxio.version>2.6.1</alluxio.version>
<!-- for tbds
<hadoop.version>3.2.1-TBDS-SNAPSHOT</hadoop.version>-->
<!--for tq hadoop -->
<hadoop.version>3.2.1</hadoop.version>
<ozone.version>1.1.0</ozone.version>
<ozone.version>1.2.0</ozone.version>
<!-- Test package version 1.2.0-tq-0.4.0 hdds-common-1.2.0-SNAPSHOT.jar-->
<!-- Test package version -->
<version.mock>1.38</version.mock>
<zookeeper.version>3.4.14</zookeeper.version>
<odfs.version>1.0.4</odfs.version>
<metrics.core.version>3.2.4</metrics.core.version>
</properties>

<repositories>
Expand Down Expand Up @@ -114,13 +119,13 @@
<version>${alluxio.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-ozone-client</artifactId>
<groupId>org.apache.ozone</groupId>
<artifactId>ozone-client</artifactId>
<version>${ozone.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-ozone-filesystem</artifactId>
<groupId>org.apache.ozone</groupId>
<artifactId>ozone-filesystem</artifactId>
<version>${ozone.version}</version>
</dependency>
<dependency>
Expand All @@ -133,6 +138,11 @@
<artifactId>zookeeper</artifactId>
<version>${zookeeper.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${metrics.core.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -367,8 +377,8 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-ozone-client</artifactId>
<groupId>org.apache.ozone</groupId>
<artifactId>ozone-client</artifactId>
<exclusions>
<exclusion>
<artifactId>netty-all</artifactId>
Expand All @@ -385,13 +395,18 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-ozone-filesystem</artifactId>
<groupId>org.apache.ozone</groupId>
<artifactId>ozone-filesystem</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
</dependency>

</dependencies>
<build>
<pluginManagement>
Expand Down

0 comments on commit 5923b00

Please sign in to comment.