kms-provider-awscrypto
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yandex.cloud</groupId> <artifactId>kms-provider-awscrypto</artifactId> <version>2.7</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.yandex.cloud</groupId> <artifactId>kms-provider-awscrypto</artifactId> <name>YC KMS provider for AWS Encryption SDK</name> <description> Glue code to enable usage of Yandex Cloud KMS from AWS Encryption SDK </description> <packaging>jar</packaging> <parent> <groupId>com.yandex.cloud</groupId> <artifactId>kms-external-clients</artifactId> <version>2.7</version> <relativePath>..</relativePath> </parent> <properties> <aws-crypto.version>2.4.1</aws-crypto.version> </properties> <dependencies> <dependency> <groupId>com.yandex.cloud</groupId> <artifactId>java-sdk-services</artifactId> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-encryption-sdk-java</artifactId> <version>${aws-crypto.version}</version> <exclusions> <exclusion> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-ext-jdk18on</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>net.jodah</groupId> <artifactId>failsafe</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>ossrh</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>