2020-06-11 21:33:28 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-parent</artifactId>
|
2020-11-06 18:49:20 +00:00
|
|
|
<version>2.0.1</version>
|
2020-06-11 21:33:28 +01:00
|
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>thorp-storage-aws</artifactId>
|
|
|
|
<name>storage-aws</name>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-06-21 07:21:21 +01:00
|
|
|
<!-- lombok -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2020-06-11 21:33:28 +01:00
|
|
|
<!-- thorp -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-storage</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-filesystem</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-console</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-lib</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-06-21 07:21:21 +01:00
|
|
|
<!-- testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-06-11 21:33:28 +01:00
|
|
|
<dependency>
|
2020-06-26 08:01:29 +01:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
|
|
<scope>test</scope>
|
2020-06-11 21:33:28 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- aws-sdk -->
|
|
|
|
<dependency>
|
2020-07-11 16:06:33 +01:00
|
|
|
<groupId>net.kemitix.aws</groupId>
|
|
|
|
<artifactId>kemitix-aws-java-sdk-s3-wrapper</artifactId>
|
2020-11-06 09:00:09 +00:00
|
|
|
<version>1.11.893</version>
|
2020-06-11 21:33:28 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
<version>2.3.1</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-06-21 07:21:21 +01:00
|
|
|
</project>
|