commons-aws
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>pl.wrzasq.commons</groupId> <artifactId>commons-aws</artifactId> <version>2.0.6</version> </dependency>
<?xml version="1.0" encoding="utf-8"?> <!-- # This file is part of the pl.wrzasq.commons. # # @license http://mit-license.org/ The MIT license # @copyright 2017 - 2021 © by Rafał Wrzeszcz - Wrzasq.pl. --> <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> <!-- core project settings --> <artifactId>commons-aws</artifactId> <packaging>jar</packaging> <parent> <groupId>pl.wrzasq.commons</groupId> <artifactId>commons</artifactId> <version>2.0.6</version> <relativePath>../</relativePath> </parent> <!-- project meta info --> <name>WrzasqPl Commons AWS</name> <url>https://rafalwrzeszcz-wrzasqpl.github.io/pl.wrzasq.commons/commons-aws/</url> <description>Helper components for working with Amazon Web Services.</description> <inceptionYear>2017</inceptionYear> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <excludes> <exclude>pl/wrzasq/commons/aws/runtime/config/**/*.class</exclude> <exclude>pl/wrzasq/commons/aws/runtime/model/**/*.class</exclude> </excludes> </configuration> </plugin> </plugins> </build> <!-- project dependencies --> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>commons-json</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-lambda-java-core</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-lambda-java-events</artifactId> <version>3.10.0</version> <exclusions> <exclusion> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-cognitoidentity</artifactId> </exclusion> <exclusion> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-dynamodb</artifactId> </exclusion> <exclusion> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-kinesis</artifactId> </exclusion> <exclusion> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-s3</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.12.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.12.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <version>2.12.3</version> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core-jvm</artifactId> <version>1.5.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.30</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>sns</artifactId> <version>2.17.14</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>sqs</artifactId> <version>2.17.14</version> </dependency> </dependencies> </project>