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 07:54:43 +01:00
|
|
|
<version>1.0.0</version>
|
2020-06-11 21:33:28 +01:00
|
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>thorp-console</artifactId>
|
|
|
|
<name>console</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- thorp -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
|
|
<artifactId>thorp-domain</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- scala -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.scala-lang</groupId>
|
|
|
|
<artifactId>scala-library</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- zio -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.zio</groupId>
|
|
|
|
<artifactId>zio_2.13</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.zio</groupId>
|
|
|
|
<artifactId>zio-streams_2.13</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.alchim31.maven</groupId>
|
|
|
|
<artifactId>scala-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|