Skip to content

Commit

Permalink
Hardcode ufs.hadoop.version to 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alluxio-bot authored and Xenorith committed Sep 11, 2023
1 parent 5fb603d commit dfa74af
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions dora/integration/tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-shaded-hadoop</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
</dependencies>
</profile>
Expand All @@ -69,7 +69,7 @@
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-shaded-hadoop</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
</dependencies>
</profile>
Expand Down
14 changes: 7 additions & 7 deletions dora/shaded/hadoop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<version>304-SNAPSHOT</version>
</parent>
<artifactId>alluxio-shaded-hadoop</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
<packaging>jar</packaging>
<name>Alluxio Shaded Libraries - Hadoop</name>
<description>Shaded Hadoop Module</description>
Expand All @@ -29,7 +29,7 @@
<!-- run properly from sub-project directories -->
<build.path>${project.parent.parent.parent.basedir}/build</build.path>
<!-- Composite jar name with both hadoop version and project version included -->
<lib.jar.name>${project.artifactId}-${ufs.hadoop.version}-${project.version}.jar</lib.jar.name>
<lib.jar.name>${project.artifactId}-3.3.1-${project.version}.jar</lib.jar.name>
<shading.prefix>alluxio.shaded.hdfs</shading.prefix>
<ufs.hadoop.version>3.3.1</ufs.hadoop.version>
</properties>
Expand Down Expand Up @@ -179,7 +179,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
</dependencies>
</profile>
Expand All @@ -198,12 +198,12 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-hdfs</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
</dependencies>
</profile>
Expand All @@ -218,12 +218,12 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-hdfs-client</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
</dependencies>
</profile>
Expand Down
2 changes: 1 addition & 1 deletion dora/underfs/abfs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-azure</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>org.alluxio</groupId>
Expand Down
2 changes: 1 addition & 1 deletion dora/underfs/adl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-azure-datalake</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>org.alluxio</groupId>
Expand Down
8 changes: 4 additions & 4 deletions dora/underfs/hdfs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<arguments>
<argument>${project.artifactId}</argument>
<argument>${basedir}/target/${project.artifactId}-${project.version}-jar-with-dependencies.jar</argument>
<argument>${build.path}/../lib/${project.artifactId}-${ufs.hadoop.version}-${project.version}.jar</argument>
<argument>${build.path}/../lib/${project.artifactId}-3.3.1-${project.version}.jar</argument>
</arguments>
</configuration>
</execution>
Expand Down Expand Up @@ -148,7 +148,7 @@
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-shaded-hadoop</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
</dependencies>
<build>
Expand Down Expand Up @@ -186,12 +186,12 @@
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-shaded-hadoop</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-minicluster</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
public final class UfsConstants {
/* Hadoop version, specified in maven property. **/
public static final String UFS_HADOOP_VERSION = "${ufs.hadoop.version}";
public static final String UFS_HADOOP_VERSION = "3.3.1";

private UfsConstants() {} // prevent instantiation
}
2 changes: 1 addition & 1 deletion dora/underfs/wasb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-azure</artifactId>
<version>${ufs.hadoop.version}</version>
<version>3.3.1</version>
</dependency>

<dependency>
Expand Down

0 comments on commit dfa74af

Please sign in to comment.