Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.
|
|
<?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>SSMExampleJava1</groupId>
|
||
|
|
<artifactId>SSMExampleJava1</artifactId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
||
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
||
|
|
</properties>
|
||
|
|
<dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.amazonaws</groupId>
|
||
|
|
<artifactId>aws-java-sdk-bom</artifactId>
|
||
|
|
<version>1.11.708</version>
|
||
|
|
<type>pom</type>
|
||
|
|
<scope>import</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mockito</groupId>
|
||
|
|
<artifactId>mockito-all</artifactId>
|
||
|
|
<version>1.10.19</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.amazonaws</groupId>
|
||
|
|
<artifactId>aws-java-sdk-lambda</artifactId>
|
||
|
|
<version>1.11.648</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.assertj</groupId>
|
||
|
|
<artifactId>assertj-core</artifactId>
|
||
|
|
<version>3.8.0</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-ssm -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.amazonaws</groupId>
|
||
|
|
<artifactId>aws-java-sdk-ssm</artifactId>
|
||
|
|
<version>1.11.709</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mockito</groupId>
|
||
|
|
<artifactId>mockito-all</artifactId>
|
||
|
|
<version>1.8.4</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mockito</groupId>
|
||
|
|
<artifactId>mockito-core</artifactId>
|
||
|
|
<version>2.13.0</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
<version>4.5</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|