From dba8b2d984c74f767fe0f68784085446a0d6c2fd Mon Sep 17 00:00:00 2001 From: Thai Duong <thaidn@google.com> Date: Fri, 16 Jun 2017 11:04:56 -0700 Subject: [PATCH] Add a pom.xml for Android. The Android flavor uses protobuf lite, does not support GCP KMS (which does not run on Android yet). It'll also include Android-specific stuff. The main flavor uses protobuf full and includes everything. Change-Id: I1b271171dad8eb31aba0aef0308be1f30cf96966 ORIGINAL_AUTHOR=Thai Duong <thaidn@google.com> GitOrigin-RevId: 8db6f588e19b4cebe624655e1f5b9184f9bbcaf2 --- .gitignore | 2 +- .../google/crypto/tink/EnvelopeTestUtil.java | 42 ++ .../java/com/google/crypto/tink/TestUtil.java | 16 - .../tink/aead/GcpKmsAeadKeyManagerTest.java | 3 +- .../aead/KmsEnvelopeAeadKeyManagerTest.java | 5 +- kokoro/gcp_ubuntu/continuous.sh | 2 +- maven/android/pom.xml | 313 +++++++++++ maven/pom.xml | 189 +++++++ maven/tink/pom.xml | 289 ++++++++++ pom.xml | 503 ------------------ 10 files changed, 840 insertions(+), 524 deletions(-) create mode 100644 java/src/test/java/com/google/crypto/tink/EnvelopeTestUtil.java create mode 100644 maven/android/pom.xml create mode 100644 maven/pom.xml create mode 100644 maven/tink/pom.xml delete mode 100644 pom.xml diff --git a/.gitignore b/.gitignore index 27499dcec..74e306454 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ /bazel-* *.swp *~ -/target +**/target .idea *.iml *.tulsiconf-user diff --git a/java/src/test/java/com/google/crypto/tink/EnvelopeTestUtil.java b/java/src/test/java/com/google/crypto/tink/EnvelopeTestUtil.java new file mode 100644 index 000000000..88482391c --- /dev/null +++ b/java/src/test/java/com/google/crypto/tink/EnvelopeTestUtil.java @@ -0,0 +1,42 @@ +// Copyright 2017 Google Inc. +// +// 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 specified language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// + +package com.google.crypto.tink; + +import com.google.crypto.tink.GcpKmsProto.GcpKmsAeadKey; +import com.google.crypto.tink.TinkProto.KeyData; +import com.google.crypto.tink.aead.GcpKmsAeadKeyManager; + +/** + * Test helpers for envelope encryption. + * These functions cannot be in TestUtil because they depend on classes + * that are not available on the Android build. + */ +public class EnvelopeTestUtil { + /** + * @return a {@code KeyData} containing a {@code GcpKmsAeadKey}. + */ + public static KeyData createGcpKmsAeadKeyData(String kmsKeyUri) + throws Exception { + GcpKmsAeadKey keyProto = GcpKmsAeadKey.newBuilder() + .setKmsKeyUri(kmsKeyUri) + .build(); + return TestUtil.createKeyData( + keyProto, + GcpKmsAeadKeyManager.TYPE_URL, + KeyData.KeyMaterialType.REMOTE); + } +} diff --git a/java/src/test/java/com/google/crypto/tink/TestUtil.java b/java/src/test/java/com/google/crypto/tink/TestUtil.java index 32ecc4f22..f98432ad8 100644 --- a/java/src/test/java/com/google/crypto/tink/TestUtil.java +++ b/java/src/test/java/com/google/crypto/tink/TestUtil.java @@ -40,7 +40,6 @@ import com.google.crypto.tink.EciesAeadHkdfProto.EciesAeadHkdfParams; import com.google.crypto.tink.EciesAeadHkdfProto.EciesAeadHkdfPrivateKey; import com.google.crypto.tink.EciesAeadHkdfProto.EciesAeadHkdfPublicKey; import com.google.crypto.tink.EciesAeadHkdfProto.EciesHkdfKemParams; -import com.google.crypto.tink.GcpKmsProto.GcpKmsAeadKey; import com.google.crypto.tink.HmacProto.HmacKey; import com.google.crypto.tink.HmacProto.HmacParams; import com.google.crypto.tink.KmsEnvelopeProto.KmsEnvelopeAeadKey; @@ -55,7 +54,6 @@ import com.google.crypto.tink.TinkProto.OutputPrefixType; import com.google.crypto.tink.aead.AeadFactory; import com.google.crypto.tink.aead.AesEaxKeyManager; import com.google.crypto.tink.aead.AesGcmKeyManager; -import com.google.crypto.tink.aead.GcpKmsAeadKeyManager; import com.google.crypto.tink.hybrid.EciesAeadHkdfPrivateKeyManager; import com.google.crypto.tink.mac.HmacKeyManager; import com.google.crypto.tink.subtle.EcUtil; @@ -231,20 +229,6 @@ public class TestUtil { KeyData.KeyMaterialType.SYMMETRIC); } - /** - * @return a {@code KeyData} containing a {@code GcpKmsAeadKey}. - */ - public static KeyData createGcpKmsAeadKeyData(String kmsKeyUri) - throws Exception { - GcpKmsAeadKey keyProto = GcpKmsAeadKey.newBuilder() - .setKmsKeyUri(kmsKeyUri) - .build(); - return createKeyData( - keyProto, - GcpKmsAeadKeyManager.TYPE_URL, - KeyData.KeyMaterialType.REMOTE); - } - /** * @return a {@code KeyData} containing a {@code KmsEnvelopeAeadKey}. */ diff --git a/java/src/test/java/com/google/crypto/tink/aead/GcpKmsAeadKeyManagerTest.java b/java/src/test/java/com/google/crypto/tink/aead/GcpKmsAeadKeyManagerTest.java index a1c1c0f33..f45523cca 100644 --- a/java/src/test/java/com/google/crypto/tink/aead/GcpKmsAeadKeyManagerTest.java +++ b/java/src/test/java/com/google/crypto/tink/aead/GcpKmsAeadKeyManagerTest.java @@ -16,6 +16,7 @@ package com.google.crypto.tink.aead; +import com.google.crypto.tink.EnvelopeTestUtil; import com.google.crypto.tink.KeysetHandle; import com.google.crypto.tink.Registry; import com.google.crypto.tink.TestUtil; @@ -48,7 +49,7 @@ public class GcpKmsAeadKeyManagerTest { TestUtil.createKeyset( TestUtil.createKey( // This key is restricted to {@code TestUtil.SERVICE_ACCOUNT_FILE}. - TestUtil.createGcpKmsAeadKeyData(TestUtil.RESTRICTED_CRYPTO_KEY_URI), + EnvelopeTestUtil.createGcpKmsAeadKeyData(TestUtil.RESTRICTED_CRYPTO_KEY_URI), 42, KeyStatusType.ENABLED, OutputPrefixType.TINK))); diff --git a/java/src/test/java/com/google/crypto/tink/aead/KmsEnvelopeAeadKeyManagerTest.java b/java/src/test/java/com/google/crypto/tink/aead/KmsEnvelopeAeadKeyManagerTest.java index 092c702e2..3d6597066 100644 --- a/java/src/test/java/com/google/crypto/tink/aead/KmsEnvelopeAeadKeyManagerTest.java +++ b/java/src/test/java/com/google/crypto/tink/aead/KmsEnvelopeAeadKeyManagerTest.java @@ -21,6 +21,7 @@ import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.fail; import com.google.crypto.tink.Aead; +import com.google.crypto.tink.EnvelopeTestUtil; import com.google.crypto.tink.KeysetHandle; import com.google.crypto.tink.Registry; import com.google.crypto.tink.TestUtil; @@ -56,7 +57,7 @@ public class KmsEnvelopeAeadKeyManagerTest { public void testGcpKmsKeyRestricted() throws Exception { KeyTemplate dekTemplate = AeadKeyTemplates.AES_128_CTR_128BITIV_HMAC_SHA256; // This key is restricted to {@code TestUtil.SERVICE_ACCOUNT_FILE}. - KeyData kmsKey = TestUtil.createGcpKmsAeadKeyData( + KeyData kmsKey = EnvelopeTestUtil.createGcpKmsAeadKeyData( TestUtil.RESTRICTED_CRYPTO_KEY_URI); KeysetHandle keysetHandle = TestUtil.createKeysetHandle( TestUtil.createKeyset( @@ -77,7 +78,7 @@ public class KmsEnvelopeAeadKeyManagerTest { @Test public void testParsingInvalidCiphertexts() throws Exception { KeyTemplate dekTemplate = AeadKeyTemplates.AES_128_CTR_128BITIV_HMAC_SHA256; - KeyData kmsKey = TestUtil.createGcpKmsAeadKeyData( + KeyData kmsKey = EnvelopeTestUtil.createGcpKmsAeadKeyData( TestUtil.RESTRICTED_CRYPTO_KEY_URI); KeysetHandle keysetHandle = TestUtil.createKeysetHandle( TestUtil.createKeyset( diff --git a/kokoro/gcp_ubuntu/continuous.sh b/kokoro/gcp_ubuntu/continuous.sh index a8c0fd82f..c648cf1a2 100755 --- a/kokoro/gcp_ubuntu/continuous.sh +++ b/kokoro/gcp_ubuntu/continuous.sh @@ -21,5 +21,5 @@ set -e # Display commands to stderr. set -x -cd github/tink/ +cd github/tink//maven mvn package diff --git a/maven/android/pom.xml b/maven/android/pom.xml new file mode 100644 index 000000000..520ae2aab --- /dev/null +++ b/maven/android/pom.xml @@ -0,0 +1,313 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <name>Tink Cryptography Library for Android</name> + <description>Tink is a small cryptographic library that provides a safe, simple, agile and fast way to accomplish some common cryptographic tasks. It is written by a group of cryptographers and security engineers at Google, but it is not an official Google product. + </description> + + <parent> + <groupId>com.google.crypto.tink</groupId> + <artifactId>parentpom</artifactId> + <version>1.0.0-SNAPSHOT</version> + </parent> + <artifactId>tink-android</artifactId> + <packaging>jar</packaging> + + <dependencies> + + <dependency> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java</artifactId> + </dependency> + + <dependency> + <groupId>com.google.errorprone</groupId> + <artifactId>error_prone_annotations</artifactId> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>com.google.truth</groupId> + <artifactId>truth</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <defaultGoal>install</defaultGoal> + + <sourceDirectory>${tink.source.dir}</sourceDirectory> + <resources> + <resource> + <directory>${tink.source.dir}</directory> + <excludes> + <exclude>**/GcpKmsAeadKeyManager.java</exclude> + <exclude>**/GcpKmsAead.java</exclude> + <exclude>**/GcpCredentialFactory.java</exclude> + <exclude>**/GcpScopes.java</exclude> + <exclude>**/ServiceAccountGcpCredentialFactory.java</exclude> + </excludes> + </resource> + </resources> + + <testSourceDirectory>${tink.test.dir}</testSourceDirectory> + <testResources> + <testResource> + <filtering>false</filtering> + <directory>${tink.test.dir}</directory> + <excludes> + <exclude>**/EnvelopeTestUtil.java</exclude> + <exclude>**/GcpKmsAeadKeyManagerTest.java</exclude> + <exclude>**/KmsEnvelopeAeadKeyManagerTest.java</exclude> + </excludes> + </testResource> + </testResources> + + <extensions> + <extension> + <groupId>kr.motd.maven</groupId> + <artifactId>os-maven-plugin</artifactId> + <version>${os-maven-plugin.version}</version> + </extension> + </extensions> + + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <version>1.3.1</version> + <executions> + <execution> + <id>enforce</id> + <configuration> + <rules> + <DependencyConvergence/> + </rules> + <fail>true</fail> + </configuration> + <goals> + <goal>enforce</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <version>1.10</version> + <executions> + <execution> + <id>regex-property</id> + <goals> + <goal>regex-property</goal> + </goals> + <configuration> + <name>tink.basedir</name> + <value>${project.basedir}</value> + <regex>maven\/[\w]+$</regex> + <replacement></replacement> + <failIfNoMatch>true</failIfNoMatch> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.7.2</version> + <configuration> + <workingDirectory>${tink.basedir}</workingDirectory> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.5.1</version> + <configuration> + <source>${java.version}</source> + <target>${java.version}</target> + <compilerArgument>-Werror</compilerArgument> + <compilerArgument>-Xlint:deprecation</compilerArgument> + <excludes> + <exclude>**/GcpKmsAeadKeyManager.java</exclude> + <exclude>**/GcpKmsAead.java</exclude> + <exclude>**/GcpCredentialFactory.java</exclude> + <exclude>**/GcpScopes.java</exclude> + <exclude>**/ServiceAccountGcpCredentialFactory.java</exclude> + </excludes> + <testExcludes> + <exclude>**/EnvelopeTestUtil.java</exclude> + <exclude>**/GcpKmsAeadKeyManagerTest.java</exclude> + <exclude>**/KmsEnvelopeAeadKeyManagerTest.java</exclude> + </testExcludes> + </configuration> + </plugin> + + <!-- download os-appropriate protoc binaries into build directory --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>${maven-dependency-plugin.version}</version> + <executions> + <execution> + <id>copy-protoc-binaries</id> + <phase>generate-sources</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + + <artifactItem> + <groupId>com.google.protobuf</groupId> + <artifactId>protoc</artifactId> + <version>${protobuf.version}</version> + <classifier>${os.detected.classifier}</classifier> + <type>exe</type> + <overWrite>true</overWrite> + <outputDirectory>${project.build.directory}</outputDirectory> + </artifactItem> + + <artifactItem> + <groupId>com.google.protobuf</groupId> + <artifactId>protoc-gen-javalite</artifactId> + <version>${protoc-gen-javalite.version}</version> + <classifier>${os.detected.classifier}</classifier> + <type>exe</type> + <overWrite>true</overWrite> + <outputDirectory>${project.build.directory}</outputDirectory> + </artifactItem> + + </artifactItems> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>${maven-antrun-plugin.version}</version> + <executions> + <execution> + <id>generate-sources</id> + <phase>generate-sources</phase> + <configuration> + <target> + <property + name="protoc.filename" + value="protoc-${protobuf.version}-${os.detected.classifier}.exe"/> + <property + name="protoc.filepath" + value="${project.build.directory}/${protoc.filename}"/> + + <chmod file="${protoc.filepath}" perm="ugo+rx"/> + + <property + name="protoc-plugin.filename" + value="protoc-gen-javalite-${protoc-gen-javalite.version}-${os.detected.classifier}.exe"/> + <property + name="protoc-plugin.filepath" + value="${project.build.directory}/${protoc-plugin.filename}"/> + <chmod file="${protoc-plugin.filepath}" perm="ugo+rx"/> + + <mkdir dir="${protobuf.output.dir}" /> + + <path id="protobuf.input.filepaths.path"> + <fileset dir="${tink.basedir}/proto"> + <include name="**/*.proto"/> + <exclude name="**/gcp_kms.proto"/> + </fileset> + </path> + + <pathconvert + pathsep=" " + property="protobuf.input.filepaths" + refid="protobuf.input.filepaths.path"/> + + <exec executable="${protoc.filepath}" failonerror="true"> + <arg value="--proto_path=${tink.basedir}"/> + <arg value="--plugin=protoc-gen-javalite=${protoc-plugin.filepath}" /> + <arg value="--javalite_out=${protobuf.output.dir}" /> + <arg line="${protobuf.input.filepaths}"/> + </exec> + </target> + <sourceRoot>${protobuf.output.dir}</sourceRoot> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <!-- Create javadoc.jar. --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.10.3</version> + <configuration> + <notimestamp>true</notimestamp> + <windowtitle>Tink Cryptography Library for Android</windowtitle> + <author>false</author> + <doctitle> + <![CDATA[ + <h1>Tink Cryptography Library for Android</h1> + <h4>Complete javadoc for developers.</h4> + ]]> + </doctitle> + <bottom> + <![CDATA[ + <div id="footer"> + <div id="footerlogo" style="float:left"> + <img src="http://www.google.com/images/art.gif" alt="Google colored balls"> + </div> + <div id="copyright" style="float:left"> + <p>© Google - + <a href="http://www.google.com/privacy.html">Privacy Policy</a> - + <a href="http://www.google.com/terms_of_service.html">Terms and Conditions</a> - + <a href="http://www.google.com/about.html">About Google</a> + </p> + </div> + ]]> + </bottom> + <!-- Ignore javadoc errors. --> + <failOnError>false</failOnError> + </configuration> + <executions> + <execution> + <id>attach-javadoc</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <!-- Create sources.jar. --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>2.4</version> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar-no-fork</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> diff --git a/maven/pom.xml b/maven/pom.xml new file mode 100644 index 000000000..4d7c54ec9 --- /dev/null +++ b/maven/pom.xml @@ -0,0 +1,189 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>com.google.crypto.tink</groupId> + <artifactId>parentpom</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>Parent pom.xml</name> + <description>Parent POM for the artifacts for Tink for Java</description> + <url>https://github.com/google/tink</url> + <inceptionYear>2016</inceptionYear> + + <licenses> + <license> + <name>Apache License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <distributionManagement> + <snapshotRepository> + <id>ossrh</id> + <url>https://oss.sonatype.org/content/repositories/snapshots</url> + </snapshotRepository> + <repository> + <id>ossrh</id> + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> + </repository> + </distributionManagement> + + <issueManagement> + <system>GitHub</system> + <url>https://github.com/google/tink/issues</url> + </issueManagement> + + <mailingLists> + <mailingList> + <name>tink-users</name> + <subscribe>tink-users+subscribe@googlegroups.com</subscribe> + <unsubscribe>tink-users+unsubscribe@googlegroups.com</unsubscribe> + <post>tink-users@googlegroups.com</post> + <archive>https://groups.google.com/group/tink-users</archive> + </mailingList> + </mailingLists> + + <developers> + <developer> + <organization>Google Inc.</organization> + <organizationUrl>https://www.google.com</organizationUrl> + </developer> + </developers> + + <scm> + <connection>scm:git:git@github.com:google/tink.git</connection> + <developerConnection>scm:git:git@github.com:google/tink.git</developerConnection> + <url>https://github.com/google/tink.git</url> + <tag>HEAD</tag> + </scm> + + <modules> + <module>android</module> + <module>tink</module> + </modules> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + <java.version>1.7</java.version> + + <!-- plugin versions --> + <build-helper-maven-plugin.version>1.9.1</build-helper-maven-plugin.version> + <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version> + <maven-dependency-plugin.version>3.0.1</maven-dependency-plugin.version> + <os-maven-plugin.version>1.2.0.Final</os-maven-plugin.version> + + <!-- library versions --> + <error-prone-annotations.version>2.0.19</error-prone-annotations.version> + <google-api-client.version>1.22.0</google-api-client.version> + <google-api-services-cloudkms.version>v1-rev9-1.22.0</google-api-services-cloudkms.version> + <gson.version>2.8.0</gson.version> + <guava.version>21.0</guava.version> + <junit.version>4.12</junit.version> + <protobuf.version>3.3.0</protobuf.version> + <protoc-gen-javalite.version>3.0.0</protoc-gen-javalite.version> + <truth.version>0.32</truth.version> + + <!-- sources paths --> + <tink.source.dir>../../java/src/main/java</tink.source.dir> + <tink.test.dir>../../java/src/test/java</tink.test.dir> + + <!-- protobuf paths --> + <protobuf.output.dir> + ${project.build.directory}/generated-sources + </protobuf.output.dir> + + </properties> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>com.google.api-client</groupId> + <artifactId>google-api-client</artifactId> + <version>${google-api-client.version}</version> + </dependency> + + <dependency> + <groupId>com.google.apis</groupId> + <artifactId>google-api-services-cloudkms</artifactId> + <version>${google-api-services-cloudkms.version}</version> + </dependency> + + <dependency> + <groupId>com.google.code.gson</groupId> + <artifactId>gson</artifactId> + <version>${gson.version}</version> + </dependency> + + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>${guava.version}</version> + </dependency> + + <dependency> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java</artifactId> + <version>${protobuf.version}</version> + </dependency> + + <dependency> + <groupId>com.google.errorprone</groupId> + <artifactId>error_prone_annotations</artifactId> + <version>${error-prone-annotations.version}</version> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>${junit.version}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>com.google.truth</groupId> + <artifactId>truth</artifactId> + <version>${truth.version}</version> + </dependency> + </dependencies> + </dependencyManagement> + + <build> + <plugins> + <!-- Staging repository configuration: http://central.sonatype.org/pages/apache-maven.html#nexus-staging-maven-plugin-for-deployment-and-release --> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.7</version> + <extensions>true</extensions> + <configuration> + <serverId>ossrh</serverId> + <nexusUrl>https://oss.sonatype.org/</nexusUrl> + + <autoReleaseAfterClose>false</autoReleaseAfterClose> + </configuration> + </plugin> + <!-- GPG signed components: http://central.sonatype.org/pages/apache-maven.html#gpg-signed-components --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <version>1.5</version> + <executions> + <execution> + <id>sign-artifacts</id> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> diff --git a/maven/tink/pom.xml b/maven/tink/pom.xml new file mode 100644 index 000000000..57ce8d1c5 --- /dev/null +++ b/maven/tink/pom.xml @@ -0,0 +1,289 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <name>Tink Cryptography Library for Java</name> + <description>Tink is a small cryptographic library that provides a safe, simple, agile and fast way to accomplish some common cryptographic tasks. It is written by a group of cryptographers and security engineers at Google, but it is not an official Google product. + </description> + + <parent> + <groupId>com.google.crypto.tink</groupId> + <artifactId>parentpom</artifactId> + <version>1.0.0-SNAPSHOT</version> + </parent> + <artifactId>tink</artifactId> + <packaging>jar</packaging> + + <dependencies> + + <dependency> + <groupId>com.google.api-client</groupId> + <artifactId>google-api-client</artifactId> + <exclusions> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>guava-jdk5</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>com.google.apis</groupId> + <artifactId>google-api-services-cloudkms</artifactId> + </dependency> + + <dependency> + <groupId>com.google.code.gson</groupId> + <artifactId>gson</artifactId> + </dependency> + + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </dependency> + + <dependency> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java</artifactId> + </dependency> + + <dependency> + <groupId>com.google.errorprone</groupId> + <artifactId>error_prone_annotations</artifactId> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>com.google.truth</groupId> + <artifactId>truth</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <defaultGoal>install</defaultGoal> + + <sourceDirectory>${tink.source.dir}</sourceDirectory> + + <testSourceDirectory>${tink.test.dir}</testSourceDirectory> + <testResources> + <testResource> + <directory>${tink.test.dir}</directory> + </testResource> + </testResources> + + <extensions> + <extension> + <groupId>kr.motd.maven</groupId> + <artifactId>os-maven-plugin</artifactId> + <version>${os-maven-plugin.version}</version> + </extension> + </extensions> + + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <version>1.3.1</version> + <executions> + <execution> + <id>enforce</id> + <configuration> + <rules> + <DependencyConvergence/> + </rules> + <fail>true</fail> + </configuration> + <goals> + <goal>enforce</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <version>1.10</version> + <executions> + <execution> + <id>regex-property</id> + <goals> + <goal>regex-property</goal> + </goals> + <configuration> + <name>tink.basedir</name> + <value>${project.basedir}</value> + <regex>maven\/[\w]+$</regex> + <replacement></replacement> + <failIfNoMatch>true</failIfNoMatch> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.7.2</version> + <configuration> + <workingDirectory>${tink.basedir}</workingDirectory> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.5.1</version> + <configuration> + <source>${java.version}</source> + <target>${java.version}</target> + <compilerArgument>-Werror</compilerArgument> + <compilerArgument>-Xlint:deprecation</compilerArgument> + </configuration> + </plugin> + + <!-- download os-appropriate protoc binaries into build directory --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>${maven-dependency-plugin.version}</version> + <executions> + <execution> + <id>copy-protoc-binaries</id> + <phase>generate-sources</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + + <artifactItem> + <groupId>com.google.protobuf</groupId> + <artifactId>protoc</artifactId> + <version>${protobuf.version}</version> + <classifier>${os.detected.classifier}</classifier> + <type>exe</type> + <overWrite>true</overWrite> + <outputDirectory>${project.build.directory}</outputDirectory> + </artifactItem> + + </artifactItems> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>${maven-antrun-plugin.version}</version> + <executions> + <execution> + <id>generate-sources</id> + <phase>generate-sources</phase> + <configuration> + <target> + <property + name="protoc.filename" + value="protoc-${protobuf.version}-${os.detected.classifier}.exe"/> + <property + name="protoc.filepath" + value="${project.build.directory}/${protoc.filename}"/> + + <chmod file="${protoc.filepath}" perm="ugo+rx"/> + + <mkdir dir="${protobuf.output.dir}" /> + + <path id="protobuf.input.filepaths.path"> + <fileset dir="${tink.basedir}/proto"> + <include name="**/*.proto"/> + </fileset> + </path> + + <pathconvert + pathsep=" " + property="protobuf.input.filepaths" + refid="protobuf.input.filepaths.path"/> + + <exec executable="${protoc.filepath}" failonerror="true"> + <arg value="--proto_path=${tink.basedir}"/> + <arg value="--java_out=${protobuf.output.dir}" /> + <arg line="${protobuf.input.filepaths}"/> + </exec> + </target> + <sourceRoot>${protobuf.output.dir}</sourceRoot> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <!-- Create javadoc.jar. --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.10.3</version> + <configuration> + <notimestamp>true</notimestamp> + <windowtitle>Tink Cryptography Library for Java</windowtitle> + <author>false</author> + <doctitle> + <![CDATA[ + <h1>Tink Cryptography Library for Java</h1> + <h4>Complete javadoc for developers.</h4> + ]]> + </doctitle> + <bottom> + <![CDATA[ + <div id="footer"> + <div id="footerlogo" style="float:left"> + <img src="http://www.google.com/images/art.gif" alt="Google colored balls"> + </div> + <div id="copyright" style="float:left"> + <p>© Google - + <a href="http://www.google.com/privacy.html">Privacy Policy</a> - + <a href="http://www.google.com/terms_of_service.html">Terms and Conditions</a> - + <a href="http://www.google.com/about.html">About Google</a> + </p> + </div> + ]]> + </bottom> + <!-- Ignore javadoc errors. --> + <failOnError>false</failOnError> + </configuration> + <executions> + <execution> + <id>attach-javadoc</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <!-- Create sources.jar. --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>2.4</version> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar-no-fork</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> diff --git a/pom.xml b/pom.xml deleted file mode 100644 index 868137a73..000000000 --- a/pom.xml +++ /dev/null @@ -1,503 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<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/maven-v4_0_0.xsd"> - <modelVersion>4.0.0</modelVersion> - - <groupId>com.google.crypto.tink</groupId> - <artifactId>tink</artifactId> - <version>1.0.0-SNAPSHOT</version> - - <name>Tink Java Cryptography Library</name> - <url>https://github.com/google/tink</url> - <description>Tink is a small cryptographic library that provides a safe, simple, agile and fast way to accomplish some common cryptographic tasks. It is written by a group of cryptographers and security engineers at Google, but it is not an official Google product. - </description> - <inceptionYear>2016</inceptionYear> - - <licenses> - <license> - <name>Apache License, Version 2.0</name> - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> - <distribution>repo</distribution> - </license> - </licenses> - - <distributionManagement> - <snapshotRepository> - <id>ossrh</id> - <url>https://oss.sonatype.org/content/repositories/snapshots</url> - </snapshotRepository> - <repository> - <id>ossrh</id> - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> - </repository> - </distributionManagement> - - <issueManagement> - <system>GitHub</system> - <url>https://github.com/google/tink/issues</url> - </issueManagement> - - <mailingLists> - <mailingList> - <name>tink-users</name> - <subscribe>tink-users+subscribe@googlegroups.com</subscribe> - <unsubscribe>tink-users+unsubscribe@googlegroups.com</unsubscribe> - <post>tink-users@googlegroups.com</post> - <archive>https://groups.google.com/group/tink-users</archive> - </mailingList> - </mailingLists> - - <developers> - <developer> - <organization>Google Inc.</organization> - <organizationUrl>https://www.google.com</organizationUrl> - </developer> - </developers> - - <scm> - <connection>scm:git:git@github.com:google/tink.git</connection> - <developerConnection>scm:git:git@github.com:google/tink.git</developerConnection> - <url>https://github.com/google/tink.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> - <java.version>1.7</java.version> - - <!-- plugin versions --> - <build-helper-maven-plugin.version>1.9.1</build-helper-maven-plugin.version> - <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version> - <maven-dependency-plugin.version>3.0.1</maven-dependency-plugin.version> - <os-maven-plugin.version>1.2.0.Final</os-maven-plugin.version> - - <!-- library versions --> - <error-prone-annotations.version>2.0.19</error-prone-annotations.version> - <google-api-client.version>1.22.0</google-api-client.version> - <google-api-services-cloudkms.version>v1-rev9-1.22.0</google-api-services-cloudkms.version> - <gson.version>2.8.0</gson.version> - <guava.version>21.0</guava.version> - <junit.version>4.12</junit.version> - <protobuf.version>3.3.0</protobuf.version> - <protoc-gen-javalite.version>3.0.0</protoc-gen-javalite.version> - <truth.version>0.32</truth.version> - - <!-- protobuf paths --> - <protobuf.input.directory>${project.basedir}/proto</protobuf.input.directory> - <protobuf.output.directory>${project.build.directory}/generated-sources</protobuf.output.directory> - - </properties> - - <dependencyManagement> - <dependencies> - - <dependency> - <groupId>com.google.api-client</groupId> - <artifactId>google-api-client</artifactId> - <version>${google-api-client.version}</version> - </dependency> - - <dependency> - <groupId>com.google.apis</groupId> - <artifactId>google-api-services-cloudkms</artifactId> - <version>${google-api-services-cloudkms.version}</version> - </dependency> - - <dependency> - <groupId>com.google.code.gson</groupId> - <artifactId>gson</artifactId> - <version>${gson.version}</version> - </dependency> - - <dependency> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - <version>${guava.version}</version> - </dependency> - - <dependency> - <groupId>com.google.protobuf</groupId> - <artifactId>protobuf-java</artifactId> - <version>${protobuf.version}</version> - </dependency> - - <dependency> - <groupId>com.google.errorprone</groupId> - <artifactId>error_prone_annotations</artifactId> - <version>${error-prone-annotations.version}</version> - </dependency> - - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>${junit.version}</version> - </dependency> - - <dependency> - <groupId>com.google.truth</groupId> - <artifactId>truth</artifactId> - <version>${truth.version}</version> - </dependency> - - </dependencies> - </dependencyManagement> - - <dependencies> - - <dependency> - <groupId>com.google.api-client</groupId> - <artifactId>google-api-client</artifactId> - <exclusions> - <exclusion> - <groupId>com.google.guava</groupId> - <artifactId>guava-jdk5</artifactId> - </exclusion> - </exclusions> - </dependency> - - <dependency> - <groupId>com.google.apis</groupId> - <artifactId>google-api-services-cloudkms</artifactId> - </dependency> - - <dependency> - <groupId>com.google.code.gson</groupId> - <artifactId>gson</artifactId> - </dependency> - - <dependency> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - </dependency> - - <dependency> - <groupId>com.google.protobuf</groupId> - <artifactId>protobuf-java</artifactId> - </dependency> - - <dependency> - <groupId>com.google.errorprone</groupId> - <artifactId>error_prone_annotations</artifactId> - </dependency> - - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>com.google.truth</groupId> - <artifactId>truth</artifactId> - </dependency> - </dependencies> - - <profiles> - <!-- Build steps that only need to run when publishing to Maven Central. --> - <profile> - <id>release</id> - <build> - <plugins> - <plugin> - <!-- Sign artifacts with local GPG key. --> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-gpg-plugin</artifactId> - <version>1.6</version> - <executions> - <execution> - <id>sign-artifacts</id> - <phase>verify</phase> - <goals> - <goal>sign</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <!-- Create javadoc.jar. --> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <version>2.10.3</version> - <configuration> - <notimestamp>true</notimestamp> - <windowtitle>Tink Java Cryptography Library</windowtitle> - <author>false</author> - <doctitle> - <![CDATA[ - <h1>Tink Java Cryptography Library</h1> - <h4>Complete javadoc for developers.</h4> - ]]> - </doctitle> - <bottom> - <![CDATA[ - <div id="footer"> - <div id="footerlogo" style="float:left"> - <img src="http://www.google.com/images/art.gif" alt="Google colored balls"> - </div> - <div id="copyright" style="float:left"> - <p>© Google - - <a href="http://www.google.com/privacy.html">Privacy Policy</a> - - <a href="http://www.google.com/terms_of_service.html">Terms and Conditions</a> - - <a href="http://www.google.com/about.html">About Google</a> - </p> - </div> - ]]> - </bottom> - <!-- Ignore javadoc errors. --> - <failOnError>false</failOnError> - </configuration> - <executions> - <execution> - <id>attach-javadoc</id> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <!-- Create sources.jar. --> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <version>2.4</version> - <executions> - <execution> - <id>attach-sources</id> - <goals> - <goal>jar-no-fork</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - - <build> - <defaultGoal>install</defaultGoal> - - <sourceDirectory>${basedir}/java/src/main/java</sourceDirectory> - <testSourceDirectory>${basedir}/java/src/test/java</testSourceDirectory> - - <testResources> - <testResource> - <directory>${basedir}/java/src/test/java</directory> - </testResource> - </testResources> - - <extensions> - <extension> - <groupId>kr.motd.maven</groupId> - <artifactId>os-maven-plugin</artifactId> - <version>${os-maven-plugin.version}</version> - </extension> - </extensions> - - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-enforcer-plugin</artifactId> - <version>1.3.1</version> - <executions> - <execution> - <id>enforce</id> - <configuration> - <rules> - <DependencyConvergence/> - </rules> - <fail>true</fail> - </configuration> - <goals> - <goal>enforce</goal> - </goals> - </execution> - </executions> - </plugin> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.5.1</version> - <configuration> - <source>${java.version}</source> - <target>${java.version}</target> - <compilerArgument>-Werror</compilerArgument> - <compilerArgument>-Xlint:deprecation</compilerArgument> - </configuration> - </plugin> - - <!-- download os-appropriate protoc binaries into build directory --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-dependency-plugin</artifactId> - <version>${maven-dependency-plugin.version}</version> - <executions> - <execution> - <id>copy-protoc-binaries</id> - <phase>generate-sources</phase> - <goals> - <goal>copy</goal> - </goals> - <configuration> - <artifactItems> - - <artifactItem> - <groupId>com.google.protobuf</groupId> - <artifactId>protoc</artifactId> - <version>${protobuf.version}</version> - <classifier>${os.detected.classifier}</classifier> - <type>exe</type> - <overWrite>true</overWrite> - <outputDirectory>${project.build.directory}</outputDirectory> - </artifactItem> - - <artifactItem> - <groupId>com.google.protobuf</groupId> - <artifactId>protoc-gen-javalite</artifactId> - <version>${protoc-gen-javalite.version}</version> - <classifier>${os.detected.classifier}</classifier> - <type>exe</type> - <overWrite>true</overWrite> - <outputDirectory>${project.build.directory}</outputDirectory> - </artifactItem> - - </artifactItems> - </configuration> - </execution> - </executions> - </plugin> - - <plugin> - <artifactId>maven-antrun-plugin</artifactId> - <version>${maven-antrun-plugin.version}</version> - <executions> - <execution> - <id>generate-sources</id> - <phase>generate-sources</phase> - <configuration> - <target> - <property - name="protoc.filename" - value="protoc-${protobuf.version}-${os.detected.classifier}.exe"/> - <property - name="protoc.filepath" - value="${project.build.directory}/${protoc.filename}"/> - - <chmod file="${protoc.filepath}" perm="ugo+rx"/> - - <property - name="protoc-plugin.filename" - value="protoc-gen-javalite-${protoc-gen-javalite.version}-${os.detected.classifier}.exe"/> - <property - name="protoc-plugin.filepath" - value="${project.build.directory}/${protoc-plugin.filename}"/> - <chmod file="${protoc-plugin.filepath}" perm="ugo+rx"/> - - <mkdir dir="${protobuf.output.directory}" /> - - <path id="protobuf.input.filepaths.path"> - <fileset dir="${protobuf.input.directory}"> - <include name="**/*.proto"/> - </fileset> - </path> - - <pathconvert - pathsep=" " - property="protobuf.input.filepaths" - refid="protobuf.input.filepaths.path"/> - - <exec executable="${protoc.filepath}" failonerror="true"> - <arg value="--proto_path=${project.basedir}"/> - <arg value="--plugin=protoc-gen-javalite=${protoc-plugin.filepath}" /> - <arg value="--javalite_out=${protobuf.output.directory}" /> - <arg line="${protobuf.input.filepaths}"/> - </exec> - </target> - <sourceRoot>${protobuf.output.directory}</sourceRoot> --> - </configuration> - <goals> - <goal>run</goal> - </goals> - </execution> - </executions> - </plugin> - - <plugin> - <!-- Create javadoc.jar. --> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <version>2.10.3</version> - <configuration> - <notimestamp>true</notimestamp> - <windowtitle>Tink Java Cryptography Library</windowtitle> - <author>false</author> - <doctitle> - <![CDATA[ - <h1>Tink Java Cryptography Library</h1> - <h4>Complete javadoc for developers.</h4> - ]]> - </doctitle> - <bottom> - <![CDATA[ - <div id="footer"> - <div id="footerlogo" style="float:left"> - <img src="http://www.google.com/images/art.gif" alt="Google colored balls"> - </div> - <div id="copyright" style="float:left"> - <p>© Google - - <a href="http://www.google.com/privacy.html">Privacy Policy</a> - - <a href="http://www.google.com/terms_of_service.html">Terms and Conditions</a> - - <a href="http://www.google.com/about.html">About Google</a> - </p> - </div> - ]]> - </bottom> - <!-- Ignore javadoc errors. --> - <failOnError>false</failOnError> - </configuration> - <executions> - <execution> - <id>attach-javadoc</id> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - - <plugin> - <!-- Create sources.jar. --> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <version>2.4</version> - <executions> - <execution> - <id>attach-sources</id> - <goals> - <goal>jar-no-fork</goal> - </goals> - </execution> - </executions> - </plugin> - - <plugin> - <!-- Allow publishing to Maven Central via - `mvn -P release clean deploy`. - See http://central.sonatype.org/pages/apache-maven.html. --> - <groupId>org.sonatype.plugins</groupId> - <artifactId>nexus-staging-maven-plugin</artifactId> - <version>1.6.5</version> - <extensions>true</extensions> - <configuration> - <serverId>ossrh</serverId> - <nexusUrl>https://oss.sonatype.org</nexusUrl> - <autoReleaseAfterClose>true</autoReleaseAfterClose> - </configuration> - </plugin> - </plugins> - </build> - -</project> -- GitLab