diff --git a/CHANGELOG b/CHANGELOG index f0f08a6..4106e02 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,14 @@ CHANGELOG ========= +0.8.0 +------ + +* Allow the build directory to be overridden +* Upgrade maven-compiler-plugin to 3.5.1 +* Clean up Jacoco configuration +* Exclude Integration Tests from Jacoco (classes ending in *IT) + 0.7.1 ------ diff --git a/README.md b/README.md index 3e0cedc..6585f75 100644 --- a/README.md +++ b/README.md @@ -190,3 +190,12 @@ Remote repositories are provided for the Sonatype Nexus Snapshots and Nexus Rele Repositories. See the [OSSRH Guide](http://central.sonatype.org/pages/ossrh-guide.html) for information on how to deploy your artifact the Maven Central through Sonatype. + +### Changing the Build Directory + +If you want to change the build directory, e.g. from your settings.xml to an SSD +or ram drive, then set the value of the `kemitix.build.directory` to your required +locations. e.g. +` +/mnt/ramdrive/${project.groupId}/${project.artifactId} +` diff --git a/pom.xml b/pom.xml index 24a6bdc..f3d11e3 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ net.kemitix kemitix-parent - 0.7.1 + 0.8.0 pom Kemitix Parent @@ -39,6 +39,7 @@ UTF-8 UTF-8 + target @@ -123,6 +124,7 @@ + ${kemitix.build.directory} @@ -148,7 +150,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.5 + 3.5.1 -Xlint:unchecked @@ -272,10 +274,11 @@ - + CLASS *Test + *IT @@ -283,20 +286,12 @@ COVEREDRATIO 0.50 - - - - CLASS - - *Test - - - + INSTRUCTION COVEREDRATIO 0.80 - + CLASS MISSEDCOUNT 0