83 lines
No EOL
2.5 KiB
XML
83 lines
No EOL
2.5 KiB
XML
<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>
|
|
<version>DEV-SNAPSHOT</version>
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>thorp-storage-aws</artifactId>
|
|
<name>storage-aws</name>
|
|
|
|
<dependencies>
|
|
<!-- 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>
|
|
|
|
<!-- scala -->
|
|
<dependency>
|
|
<groupId>org.scala-lang</groupId>
|
|
<artifactId>scala-library</artifactId>
|
|
</dependency>
|
|
|
|
<!-- aws-sdk -->
|
|
<dependency>
|
|
<groupId>com.amazonaws</groupId>
|
|
<artifactId>aws-java-sdk-s3</artifactId>
|
|
<version>1.11.804</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.10.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-cbor</artifactId>
|
|
<version>2.11.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<version>2.3.1</version>
|
|
</dependency>
|
|
|
|
<!-- scala - testing -->
|
|
<dependency>
|
|
<groupId>org.scalatest</groupId>
|
|
<artifactId>scalatest_2.13</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.scalamock</groupId>
|
|
<artifactId>scalamock_2.13</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>net.alchim31.maven</groupId>
|
|
<artifactId>scala-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |