cdap-securestore-ext-cloudkms
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-securestore-ext-cloudkms</artifactId> <version>6.11.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright © 2019 Cask Data, 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 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"> <parent> <artifactId>cdap</artifactId> <groupId>io.cdap.cdap</groupId> <version>6.11.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cdap-securestore-ext-cloudkms</artifactId> <name>CDAP Google Cloud KMS Secure Store Extension</name> <packaging>jar</packaging> <properties> <google.api.client.version>1.24.1</google.api.client.version> <google.cloudkms.api.version>v1-rev59-1.24.1</google.cloudkms.api.version> <guava.version>20.0</guava.version> </properties> <dependencies> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-securestore-spi</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.apis</groupId> <artifactId>google-api-services-cloudkms</artifactId> <version>${google.cloudkms.api.version}</version> <exclusions> <exclusion> <!-- exclude an old version of Guava --> <groupId>com.google.guava</groupId> <artifactId>guava-jdk5</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>com.google.api-client</groupId> <artifactId>google-api-client</artifactId> <version>${google.api.client.version}</version> </dependency> <dependency> <groupId>com.google.http-client</groupId> <artifactId>google-http-client-jackson2</artifactId> <version>${google.api.client.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> <profiles> <profile> <id>dist</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.8</version> <executions> <execution> <id>copy-dependencies</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration combine.self="override"> <outputDirectory>${project.build.directory}/libexec</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>false</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> <prependGroupId>true</prependGroupId> <silent>true</silent> <includeScope>runtime</includeScope> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>jar</id> <phase>prepare-package</phase> <configuration combine.self="override"> <outputDirectory>${project.build.directory}/libexec</outputDirectory> <finalName>${project.groupId}.${project.build.finalName}</finalName> </configuration> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>