Skip to content

Commit e7a1bab

Browse files
committed
Prepare version 0.5.0
1 parent 95315f1 commit e7a1bab

File tree

3 files changed

+25
-9
lines changed

3 files changed

+25
-9
lines changed

CHANGELOG.md

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

3-
Version 0.5.0 *(In development)*
4-
--------------------------------
3+
Version 0.5.0 *(2016-07-17)*
4+
----------------------------
5+
6+
- Add excludes to JunitJacoco extension [\#37](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/37) ([vanniktech](https://github.com/vanniktech))
7+
- Clean up tests [\#36](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/36) ([vanniktech](https://github.com/vanniktech))
8+
- Restore flavor iterations [\#34](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/34) ([outlying](https://github.com/outlying)) - many thanks to him
9+
- Update to Gradle 2.14 [\#33](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/33) ([vanniktech](https://github.com/vanniktech))
10+
- Fix Travis after\_success. [\#32](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/32) ([vanniktech](https://github.com/vanniktech))
11+
- Update to Gradle 2.13 [\#31](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/31) ([vanniktech](https://github.com/vanniktech))
12+
- Add Codecov file [\#30](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/30) ([vanniktech](https://github.com/vanniktech))
13+
- Update Android Gradle Build Tools to 2.1.0 [\#29](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/29) ([vanniktech](https://github.com/vanniktech))
14+
- Add Codecov Coverage [\#26](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/26) ([vanniktech](https://github.com/vanniktech))
515

616
Version 0.4.0 *(2016-04-10)*
717
--------------------------------

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,17 @@ Gradle plugin that generates Jacoco reports from a Gradle Project. Android Appli
99

1010
### Android project
1111

12-
- Task `jacocoTestReport<BuildType>`
13-
- Executes the `test<BuildType>` task before
12+
- Task `jacocoTestReport<Flavor><BuildType>`
13+
- Executes the `test<Flavor><BuildType>UnitTest` task before
1414
- Gets executed when the `check` task is executed
15-
- Generated Jacoco reports can be found under `build/reports/jacoco/<BuildType>`.
15+
- Generated Jacoco reports can be found under `build/reports/jacoco/<Flavor>/<BuildType>`.
1616

17-
Where `<BuildType>` usually is `debug` and `release` unless additional build types where specified. For instance when having `debug` and `release` build types the following tasks would be created: `jacocoTestReportDebug`, `jacocoTestReportRelease`.
17+
Where `<BuildType>` is usually `debug` & `release` unless additional build types where specified.
18+
`<Flavor>` is optional and will be ignored if not specified.
19+
20+
For instance when having `debug` & `release` build types and no flavors the following tasks would be created: `jacocoTestReportDebug` and `jacocoTestReportRelease`.
21+
22+
When having `debug` & `release` build types and `red` & `blue` flavors the following tasks would be created: `jacocoTestReportRedDebug`, `jacocoTestReportBlueDebug`, `jacocoTestReportRedRelease` and `jacocoTestReportBlueRelease`.
1823

1924
### Java project
2025

@@ -35,7 +40,7 @@ buildscript {
3540
mavenCentral()
3641
}
3742
dependencies {
38-
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.4.0'
43+
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.5.0'
3944
}
4045
}
4146
@@ -52,14 +57,15 @@ Can be found [here](https://oss.sonatype.org/#nexus-search;quick~gradle-android-
5257
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.5.0-SNAPSHOT'
5358
```
5459

55-
### Configuration (since 0.3.0)
60+
### Configuration
5661

5762
Those are all available configurations - shown with default values and their types. More information can be found in the [Java Documentation of the Extension](src/main/groovy/com/vanniktech/android/junit/jacoco/JunitJacocoExtension.groovy).
5863

5964
```groovy
6065
junitJacoco {
6166
jacocoVersion = '0.7.2.201409121644' // type String
6267
ignoreProjects = [] // type String array
68+
exludes // type String List
6369
}
6470
```
6571

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.vanniktech
2-
VERSION_NAME=0.5.0-SNAPSHOT
2+
VERSION_NAME=0.5.0
33

44
POM_ARTIFACT_ID=gradle-android-junit-jacoco-plugin
55
POM_NAME=Gradle Android Jacoco Plugin

0 commit comments

Comments
 (0)