Moved tests to outside of src/ path

This allows them to be excluded from final built package.

pom.xml and .classpath updated

Unable to test due to lack of JUnit 5 in Eclipse Neon
This commit is contained in:
catbref
2018-11-02 15:52:09 +00:00
parent 5526f9a7f0
commit eaad565765
21 changed files with 12 additions and 1 deletions

View File

@@ -9,6 +9,7 @@
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>tests</testSourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
@@ -219,5 +220,10 @@
<artifactId>jetty-rewrite</artifactId>
<version>9.4.11.v20180605</version>
</dependency>
<dependency>
<groupId>org.bitcoinj</groupId>
<artifactId>bitcoinj-core</artifactId>
<version>0.14.7</version>
</dependency>
</dependencies>
</project>