This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git
The following commit(s) were added to refs/heads/master by this push:
new 0db0c28f73 HDDS-10935. Create hdds-crypto-api and hdds-crypto-default
modules (#6770)
0db0c28f73 is described below
commit 0db0c28f7334496b6d9bb9df3e18835e4cdc1f3a
Author: Istvan Fajth <[email protected]>
AuthorDate: Wed Jun 19 22:08:04 2024 +0200
HDDS-10935. Create hdds-crypto-api and hdds-crypto-default modules (#6770)
---
hadoop-hdds/crypto-api/pom.xml | 37 +++++++++++++++++++++++++++++++++++++
hadoop-hdds/crypto-default/pom.xml | 37 +++++++++++++++++++++++++++++++++++++
hadoop-hdds/pom.xml | 2 ++
3 files changed, 76 insertions(+)
diff --git a/hadoop-hdds/crypto-api/pom.xml b/hadoop-hdds/crypto-api/pom.xml
new file mode 100644
index 0000000000..db19cc4f34
--- /dev/null
+++ b/hadoop-hdds/crypto-api/pom.xml
@@ -0,0 +1,37 @@
+<?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
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.ozone</groupId>
+ <artifactId>hdds</artifactId>
+ <version>1.5.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>hdds-crypto-api</artifactId>
+ <version>1.5.0-SNAPSHOT</version>
+ <description>Apache Ozone Distributed Data Store cryptographic
functions</description>
+ <name>Apache Ozone HDDS Crypto</name>
+
+ <properties>
+ <maven.test.skip>true</maven.test.skip> <!-- no tests in this module
so far -->
+ </properties>
+
+ <dependencies>
+
+ </dependencies>
+</project>
diff --git a/hadoop-hdds/crypto-default/pom.xml
b/hadoop-hdds/crypto-default/pom.xml
new file mode 100644
index 0000000000..c586f91712
--- /dev/null
+++ b/hadoop-hdds/crypto-default/pom.xml
@@ -0,0 +1,37 @@
+<?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
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.ozone</groupId>
+ <artifactId>hdds</artifactId>
+ <version>1.5.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>hdds-crypto-default</artifactId>
+ <version>1.5.0-SNAPSHOT</version>
+ <description>Default implementation of Apache Ozone Distributed Data
Store's cryptographic functions</description>
+ <name>Apache Ozone HDDS Crypto - Default</name>
+
+ <properties>
+ <maven.test.skip>true</maven.test.skip> <!-- no tests in this module
so far -->
+ </properties>
+
+ <dependencies>
+
+ </dependencies>
+</project>
diff --git a/hadoop-hdds/pom.xml b/hadoop-hdds/pom.xml
index 567f432b38..a863fe3ef5 100644
--- a/hadoop-hdds/pom.xml
+++ b/hadoop-hdds/pom.xml
@@ -39,6 +39,8 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
<module>interface-server</module>
<module>client</module>
<module>common</module>
+ <module>crypto-api</module>
+ <module>crypto-default</module>
<module>framework</module>
<module>managed-rocksdb</module>
<module>rocksdb-checkpoint-differ</module>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]