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-06-21 19:42:29 +01:00
|
|
|
<version>1.1.0-SNAPSHOT</version>
|
2020-06-11 21:33:28 +01:00
|
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>thorp-lib</artifactId>
|
|
|
|
<name>lib</name>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-06-23 10:23:28 +01:00
|
|
|
<!-- lombok -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2020-06-24 22:39:16 +01:00
|
|
|
<optional>true</optional>
|
2020-06-23 10:23:28 +01:00
|
|
|
</dependency>
|
|
|
|
|
2020-06-11 21:33:28 +01:00
|
|
|
<!-- thorp -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-domain</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-filesystem</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-config</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-console</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-storage</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-06-27 18:00:22 +01:00
|
|
|
<!-- testing -->
|
2020-06-11 21:33:28 +01:00
|
|
|
<dependency>
|
2020-06-27 18:00:22 +01:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<scope>test</scope>
|
2020-06-11 21:33:28 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-06-27 18:00:22 +01:00
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
2020-06-11 21:33:28 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|