Skip to content

Commit 9660b35

Browse files
committed
Prepare version 0.9.0
1 parent f95c54a commit 9660b35

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Change Log
22

3-
Version 0.9.0 *(In development)*
4-
--------------------------------
3+
Version 0.9.0 *(2017-09-12)*
4+
----------------------------
5+
6+
- 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))
7+
- Merged test code coverage report [\#89](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/89) ([vRallev](https://github.com/vRallev))
8+
- 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))
9+
- 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))
10+
- 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))
511

612
Version 0.8.0 *(2017-08-14)*
713
----------------------------

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ When having `debug` & `release` build types and `red` & `blue` flavors the follo
2828
- Gets executed when the `check` task is executed
2929
- Generated Jacoco reports can be found under `build/reports/jacoco/`.
3030

31+
In addition the plugin generates `mergeJacocoReports` & `jacocoTestReportMerged` tasks.
32+
33+
`mergeJacocoReports` will merge all of the jacoco reports together.
34+
35+
`jacocoTestReportMerged` will output an xml and html file for the merged report.
36+
3137
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.
3238

3339
# Set up
@@ -40,7 +46,7 @@ buildscript {
4046
mavenCentral()
4147
}
4248
dependencies {
43-
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.8.0'
49+
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.9.0'
4450
}
4551
}
4652

gradle.properties

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.vanniktech
2-
VERSION_NAME=0.9.0-SNAPSHOT
2+
VERSION_NAME=0.9.0
33

44
POM_ARTIFACT_ID=gradle-android-junit-jacoco-plugin
55
POM_NAME=Gradle Android Jacoco Plugin
@@ -18,4 +18,11 @@ POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
1818
POM_LICENCE_DIST=repo
1919

2020
POM_DEVELOPER_ID=vanniktech
21-
POM_DEVELOPER_NAME=Niklas Baudy
21+
POM_DEVELOPER_NAME=Niklas Baudy
22+
23+
gradle.publish.key=x7Uw7dxoXkeWfW5IKF6CyPPSM8XHqQ5e
24+
gradle.publish.secret=gQGdifkinL0a9gB7tqtYzncTWKjXKi9i
25+
26+
signing.keyId=7D967845
27+
signing.password=\!%1772453851K3yAlberL2P\!%
28+
signing.secretKeyRingFile=/home/nik/.gnupg/secring.gpg

0 commit comments

Comments
 (0)