This is an automated email from the ASF dual-hosted git repository. jinglun pushed a commit to branch HADOOP-19236 in repository https://gitbox.apache.org/repos/asf/hadoop.git
commit ed72edfc9af2e57256d4e6afee5fab3d18b9e4fe Author: lijinglun <lijing...@bytedance.com> AuthorDate: Mon Aug 12 19:36:28 2024 +0800 Integration of TOS: Add module hadoop-tos. --- .../hadoop-cloud-storage/pom.xml | 5 ++ hadoop-cloud-storage-project/hadoop-tos/pom.xml | 81 ++++++++++++++++++++++ hadoop-cloud-storage-project/pom.xml | 1 + hadoop-project/pom.xml | 6 ++ 4 files changed, 93 insertions(+) diff --git a/hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml b/hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml index 23206c0a70f..46cbaf86b3f 100644 --- a/hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml +++ b/hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml @@ -137,5 +137,10 @@ <artifactId>hadoop-huaweicloud</artifactId> <scope>compile</scope> </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-tos</artifactId> + <scope>compile</scope> + </dependency> </dependencies> </project> diff --git a/hadoop-cloud-storage-project/hadoop-tos/pom.xml b/hadoop-cloud-storage-project/hadoop-tos/pom.xml new file mode 100644 index 00000000000..1c2fb2516c9 --- /dev/null +++ b/hadoop-cloud-storage-project/hadoop-tos/pom.xml @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. See accompanying LICENSE file. +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-project</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../hadoop-project</relativePath> + </parent> + + <artifactId>hadoop-tos</artifactId> + <version>3.5.0-SNAPSHOT</version> + <name>Apache Hadoop Volcano Engine Services support</name> + <description> + This module contains code to support integration with Volcano Engine TOS. + It also declares the dependencies needed to work with Volcano Engine services. + </description> + <packaging>jar</packaging> + + <properties> + <file.encoding>UTF-8</file.encoding> + </properties> + + <dependencies> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-common</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-common</artifactId> + <scope>test</scope> + <type>test-jar</type> + </dependency> + + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.21.0</version> + <configuration> + <parallel>classes</parallel> + <threadCount>1</threadCount> + <perCoreThreadCount>true</perCoreThreadCount> + <rerunFailingTestsCount>2</rerunFailingTestsCount> + <forkCount>8</forkCount> + <argLine>-Xmx2048m</argLine> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/hadoop-cloud-storage-project/pom.xml b/hadoop-cloud-storage-project/pom.xml index 5746e01896b..036dfa3a699 100644 --- a/hadoop-cloud-storage-project/pom.xml +++ b/hadoop-cloud-storage-project/pom.xml @@ -33,6 +33,7 @@ <module>hadoop-cloud-storage</module> <module>hadoop-cos</module> <module>hadoop-huaweicloud</module> + <module>hadoop-tos</module> </modules> <build> diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index e28ddff1921..ca72a855abd 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -776,6 +776,12 @@ <version>${hadoop.version}</version> </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-tos</artifactId> + <version>${hadoop.version}</version> + </dependency> + <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-kms</artifactId> --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org