2019-05-01 00:06:26 -07:00
<project xmlns= "http://maven.apache.org/POM/4.0.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
2019-05-28 17:37:31 -07:00
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 > aws.example.s3control</groupId>
<artifactId > aws-s3control-examples</artifactId>
<packaging > jar</packaging>
<version > 1.0</version>
<name > Amazon S3 Control Examples</name>
<url > http://maven.apache.org</url>
<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.543</version>
<type > pom</type>
<scope > import</scope>
</dependency>
</dependencies>
</dependencyManagement>
2019-05-01 00:06:26 -07:00
<dependencies >
2019-05-28 17:37:31 -07:00
<dependency >
<groupId > com.amazonaws</groupId>
<artifactId > aws-java-sdk-s3control</artifactId>
</dependency>
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<version > 3.8.1</version>
<scope > test</scope>
</dependency>
2019-05-01 00:06:26 -07:00
</dependencies>
</project>