Paul Campbell
a4bd24ebce
* [BROKEN]Remove ZIO and EIP-ZIO * [BROKEN]uishell.UIShell.receiver: implement * [BROKEN]domain.Channel: new implementation replacing MessageChannel * [BROKEN] use domain.Channel * Shutdown filescanner channel when finished * start the uiChannel * domain.Channel: channel completes once shutdown and queue empty * uishell: down use eraseLineForward in batch mode * lib: set file runner before adding listener * uishell: don’t log do nothing events when not in batch mode * domain.Channel: if exception in child thread then shutdown channel * uishell: use correct line endings for showing chosen actions * domain.Channel: don’t wait for shutdown if not running * domain: remove legacy MessageChannel * domain.Channel: don’t hold thread array * lib.LocalFileSystem: restore delete scanner * lib.LocalFileSystem: shutdown deletetion channel * domain.Channel: improved shutdown logic * clean up
67 lines
No EOL
1.9 KiB
XML
67 lines
No EOL
1.9 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>1.1.0-SNAPSHOT</version>
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>thorp-lib</artifactId>
|
|
<name>lib</name>
|
|
|
|
<dependencies>
|
|
<!-- lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- scala -->
|
|
<dependency>
|
|
<groupId>org.scala-lang</groupId>
|
|
<artifactId>scala-library</artifactId>
|
|
</dependency>
|
|
|
|
<!-- scala - testing -->
|
|
<dependency>
|
|
<groupId>org.scalatest</groupId>
|
|
<artifactId>scalatest_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> |