thorp/cli/pom.xml

61 lines
1.6 KiB
XML
Raw Normal View History

<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-cli</artifactId>
<name>cli</name>
<dependencies>
<!-- thorp -->
<dependency>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-config</artifactId>
</dependency>
<dependency>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-filesystem</artifactId>
</dependency>
Convert to Java (domain, config, storage-aws and filesystem) (#446) * Java rewrite domain (#438) * domain.Bucket: convert to Java * domain.LastModified: convert to Java * domain.QuoteStripper: convert to Java * domain.HexEncoder: convert to Java * domain.MD5Hash: convert to Java * remove unused import * domain.RemoteKey: convert to Java * domain.Action: convert to Java * domain.Counters: convert to Java * domain.HashType: convert to Java * domain.Hashes: convert to Java * domain.MD5HashData: convert to Java * domain.Filter: convert to Java * domain.LocalFile: convert to Java * domain: make immutable field public * domain.SizeTranslation: convert to Java * domain.HashType: restrict access to contstructor * domain.RemoteObjects: convert to Java Introduce MapView and Tuple. * domain.Sources: convert to Java * domain.StorageEvent: convert to Java * domain.Terminal: convert to Java * domain => config: move SimpleLens to only module that uses it * domain => filesystem: move TemporaryFolder * domain.Implicits: removed * parent: make junit, et al available * domain: add testing dependencies * domain.HexEncoder: convert test to Java and fix bugs * domain.HexEncoderTest: replace with Java version * domain.MD5HashTest: convert to Java * domain.RemoteKeyTest: convert to Java * domain.SizeTranslationTest: convert to Java * domain.TerminalTest: convert to Java * domain: remove unused dependencies * parent: rollback zio-streams to match zio and pin them together * storage-aws: resolve transitive dependency conflicts * Java rewrite storage aws (#445) * storage-aws.AmazonS3: convert to Java as AmazonS3Client * storage-aws.S3Copier: convert to Java * storage-aws.S3Uploader: convert to Java * storage-aws.S3Deleter: convert to Java * storage-aws.S3Lister: convert to Java * filesystem: write cache data correctly (as supplied) * domain,filesystem: fix MD5Hash generation * filesystem: convert to Java (#450) * remove legacy * Rewrite config module in Java (#461) * config.ParseConfigFile: convert to Java * config.ParseConfigFile: convert to Java * config.SourceConfigLoader: convert to Java * WIP config.Configuration: convert to Java * config.ConfigOption: convert to Java * config.ConfigOptions: convert to Java * config.ConfigValidation: convert to Java * config.ConfigQuery: convert to Java * config: move classes to correct location * config.ConfigValidationException: convert to Java * config.ConfigValidator: convert to Java * config.ConfigurationBuilder: convert to Java * config.SimpleLens: removed * config.Config: remove environment * config.ConfigOptionTest: convert to Java * config.ConfigQueryTest: convert to Java * config.ConfigurationBuilderTest: convert to Java * config.ParseConfigFileTest: convert to Java * config.ParseConfigLinesTest: convert to Java * config: remove scala dependencies and plugin
2020-06-21 07:21:21 +01:00
<!-- command line parsing -->
<dependency>
<groupId>com.github.scopt</groupId>
<artifactId>scopt_2.13</artifactId>
</dependency>
<!-- scala -->
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
</dependency>
Convert to Java (domain, config, storage-aws and filesystem) (#446) * Java rewrite domain (#438) * domain.Bucket: convert to Java * domain.LastModified: convert to Java * domain.QuoteStripper: convert to Java * domain.HexEncoder: convert to Java * domain.MD5Hash: convert to Java * remove unused import * domain.RemoteKey: convert to Java * domain.Action: convert to Java * domain.Counters: convert to Java * domain.HashType: convert to Java * domain.Hashes: convert to Java * domain.MD5HashData: convert to Java * domain.Filter: convert to Java * domain.LocalFile: convert to Java * domain: make immutable field public * domain.SizeTranslation: convert to Java * domain.HashType: restrict access to contstructor * domain.RemoteObjects: convert to Java Introduce MapView and Tuple. * domain.Sources: convert to Java * domain.StorageEvent: convert to Java * domain.Terminal: convert to Java * domain => config: move SimpleLens to only module that uses it * domain => filesystem: move TemporaryFolder * domain.Implicits: removed * parent: make junit, et al available * domain: add testing dependencies * domain.HexEncoder: convert test to Java and fix bugs * domain.HexEncoderTest: replace with Java version * domain.MD5HashTest: convert to Java * domain.RemoteKeyTest: convert to Java * domain.SizeTranslationTest: convert to Java * domain.TerminalTest: convert to Java * domain: remove unused dependencies * parent: rollback zio-streams to match zio and pin them together * storage-aws: resolve transitive dependency conflicts * Java rewrite storage aws (#445) * storage-aws.AmazonS3: convert to Java as AmazonS3Client * storage-aws.S3Copier: convert to Java * storage-aws.S3Uploader: convert to Java * storage-aws.S3Deleter: convert to Java * storage-aws.S3Lister: convert to Java * filesystem: write cache data correctly (as supplied) * domain,filesystem: fix MD5Hash generation * filesystem: convert to Java (#450) * remove legacy * Rewrite config module in Java (#461) * config.ParseConfigFile: convert to Java * config.ParseConfigFile: convert to Java * config.SourceConfigLoader: convert to Java * WIP config.Configuration: convert to Java * config.ConfigOption: convert to Java * config.ConfigOptions: convert to Java * config.ConfigValidation: convert to Java * config.ConfigQuery: convert to Java * config: move classes to correct location * config.ConfigValidationException: convert to Java * config.ConfigValidator: convert to Java * config.ConfigurationBuilder: convert to Java * config.SimpleLens: removed * config.Config: remove environment * config.ConfigOptionTest: convert to Java * config.ConfigQueryTest: convert to Java * config.ConfigurationBuilderTest: convert to Java * config.ParseConfigFileTest: convert to Java * config.ParseConfigLinesTest: convert to Java * config: remove scala dependencies and plugin
2020-06-21 07:21:21 +01:00
<!-- zio -->
<dependency>
<groupId>dev.zio</groupId>
<artifactId>zio_2.13</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>
Convert to Java (domain, config, storage-aws and filesystem) (#446) * Java rewrite domain (#438) * domain.Bucket: convert to Java * domain.LastModified: convert to Java * domain.QuoteStripper: convert to Java * domain.HexEncoder: convert to Java * domain.MD5Hash: convert to Java * remove unused import * domain.RemoteKey: convert to Java * domain.Action: convert to Java * domain.Counters: convert to Java * domain.HashType: convert to Java * domain.Hashes: convert to Java * domain.MD5HashData: convert to Java * domain.Filter: convert to Java * domain.LocalFile: convert to Java * domain: make immutable field public * domain.SizeTranslation: convert to Java * domain.HashType: restrict access to contstructor * domain.RemoteObjects: convert to Java Introduce MapView and Tuple. * domain.Sources: convert to Java * domain.StorageEvent: convert to Java * domain.Terminal: convert to Java * domain => config: move SimpleLens to only module that uses it * domain => filesystem: move TemporaryFolder * domain.Implicits: removed * parent: make junit, et al available * domain: add testing dependencies * domain.HexEncoder: convert test to Java and fix bugs * domain.HexEncoderTest: replace with Java version * domain.MD5HashTest: convert to Java * domain.RemoteKeyTest: convert to Java * domain.SizeTranslationTest: convert to Java * domain.TerminalTest: convert to Java * domain: remove unused dependencies * parent: rollback zio-streams to match zio and pin them together * storage-aws: resolve transitive dependency conflicts * Java rewrite storage aws (#445) * storage-aws.AmazonS3: convert to Java as AmazonS3Client * storage-aws.S3Copier: convert to Java * storage-aws.S3Uploader: convert to Java * storage-aws.S3Deleter: convert to Java * storage-aws.S3Lister: convert to Java * filesystem: write cache data correctly (as supplied) * domain,filesystem: fix MD5Hash generation * filesystem: convert to Java (#450) * remove legacy * Rewrite config module in Java (#461) * config.ParseConfigFile: convert to Java * config.ParseConfigFile: convert to Java * config.SourceConfigLoader: convert to Java * WIP config.Configuration: convert to Java * config.ConfigOption: convert to Java * config.ConfigOptions: convert to Java * config.ConfigValidation: convert to Java * config.ConfigQuery: convert to Java * config: move classes to correct location * config.ConfigValidationException: convert to Java * config.ConfigValidator: convert to Java * config.ConfigurationBuilder: convert to Java * config.SimpleLens: removed * config.Config: remove environment * config.ConfigOptionTest: convert to Java * config.ConfigQueryTest: convert to Java * config.ConfigurationBuilderTest: convert to Java * config.ParseConfigFileTest: convert to Java * config.ParseConfigLinesTest: convert to Java * config: remove scala dependencies and plugin
2020-06-21 07:21:21 +01:00
</project>