Skip to content

Commit

Permalink
Prepare version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vanniktech committed Sep 12, 2017
1 parent f95c54a commit 9660b35
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)*
----------------------------
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
}
}
Expand Down
11 changes: 9 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
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

0 comments on commit 9660b35

Please sign in to comment.