diff --git a/CHANGELOG.md b/CHANGELOG.md index ef10506..d208415 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # Change Log -Version 0.9.0 *(In development)* --------------------------------- +Version 0.9.0 *(2017-09-12)* +---------------------------- + +- Fix the class file location for the Android Gradle Plugin 3.0.0 [\#90](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/90) ([vRallev](https://github.com/vRallev)) +- Merged test code coverage report [\#89](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/89) ([vRallev](https://github.com/vRallev)) +- Autoexclude \*\_Factory classes that are generated by Dagger 2. [\#88](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/88) ([vanniktech](https://github.com/vanniktech)) +- Don't clean build again when deploying SNAPSHOTS. [\#86](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/86) ([vanniktech](https://github.com/vanniktech)) +- Update Jacoco Gradle Plugin to 0.8.0 [\#85](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/85) ([vanniktech](https://github.com/vanniktech)) Version 0.8.0 *(2017-08-14)* ---------------------------- diff --git a/README.md b/README.md index e92faa3..d2e2f30 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,12 @@ When having `debug` & `release` build types and `red` & `blue` flavors the follo - Gets executed when the `check` task is executed - Generated Jacoco reports can be found under `build/reports/jacoco/`. +In addition the plugin generates `mergeJacocoReports` & `jacocoTestReportMerged` tasks. + +`mergeJacocoReports` will merge all of the jacoco reports together. + +`jacocoTestReportMerged` will output an xml and html file for the merged report. + Works with the latest Gradle Android Tools version 2.3.3. This plugin is compiled using Java 7 hence you also need Java 7 in order to use it. # Set up @@ -40,7 +46,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.8.0' + classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.9.0' } } diff --git a/gradle.properties b/gradle.properties index 8651369..760fa7f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.vanniktech -VERSION_NAME=0.9.0-SNAPSHOT +VERSION_NAME=0.9.0 POM_ARTIFACT_ID=gradle-android-junit-jacoco-plugin POM_NAME=Gradle Android Jacoco Plugin @@ -18,4 +18,11 @@ POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt POM_LICENCE_DIST=repo POM_DEVELOPER_ID=vanniktech -POM_DEVELOPER_NAME=Niklas Baudy \ No newline at end of file +POM_DEVELOPER_NAME=Niklas Baudy + +gradle.publish.key=x7Uw7dxoXkeWfW5IKF6CyPPSM8XHqQ5e +gradle.publish.secret=gQGdifkinL0a9gB7tqtYzncTWKjXKi9i + +signing.keyId=7D967845 +signing.password=\!%1772453851K3yAlberL2P\!% +signing.secretKeyRingFile=/home/nik/.gnupg/secring.gpg