This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 964b7a145ba25cf647936543028d3c4c1a04588c Author: Benoit Tellier <[email protected]> AuthorDate: Thu Mar 25 14:28:33 2021 +0700 JAMES-3524 Maven module for AES blob encryption --- server/blob/blob-aes/pom.xml | 67 ++++++++++++++++++++++++++++++++++++++++++++ server/blob/pom.xml | 1 + 2 files changed, 68 insertions(+) diff --git a/server/blob/blob-aes/pom.xml b/server/blob/blob-aes/pom.xml new file mode 100644 index 0000000..dc1cf0a --- /dev/null +++ b/server/blob/blob-aes/pom.xml @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you 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. +--> +<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.james</groupId> + <artifactId>james-project</artifactId> + <version>3.7.0-SNAPSHOT</version> + <relativePath>../../../pom.xml</relativePath> + </parent> + + <artifactId>blob-aes</artifactId> + <name>Apache James :: Server :: Blob :: AES encryption</name> + + <dependencies> + <dependency> + <groupId>${james.groupId}</groupId> + <artifactId>blob-api</artifactId> + </dependency> + <dependency> + <groupId>${james.groupId}</groupId> + <artifactId>blob-api</artifactId> + <type>test-jar</type> + <scope>test</scope> + </dependency> + <dependency> + <groupId>${james.groupId}</groupId> + <artifactId>blob-memory</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>${james.groupId}</groupId> + <artifactId>james-server-testing</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.google.crypto.tink</groupId> + <artifactId>tink</artifactId> + <version>1.5.0</version> + </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </dependency> + </dependencies> + + +</project> \ No newline at end of file diff --git a/server/blob/pom.xml b/server/blob/pom.xml index 59e22a2..ff7b1f0 100644 --- a/server/blob/pom.xml +++ b/server/blob/pom.xml @@ -33,6 +33,7 @@ <name>Apache James :: Server :: Blob</name> <modules> + <module>blob-aes</module> <module>blob-api</module> <module>blob-cassandra</module> <module>blob-common</module> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
