Skip to content

Commit 3ecbe7d

Browse files
authored
Release 1.1.0 (#8)
1 parent f445c6f commit 3ecbe7d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[![Gradle Plugin Portal](https://img.shields.io/maven-metadata/v/https/plugins.gradle.org/m2/org.neotech.plugin/android-root-coverage-plugin/maven-metadata.xml.svg?label=Plugin%20portal)](https://plugins.gradle.org/plugin/org.neotech.plugin.rootcoverage)
2+
[![Build status](https://travis-ci.com/NeoTech-Software/Android-Root-Coverage-Plugin.svg?branch=master)](https://travis-ci.com/NeoTech-Software/Android-Root-Coverage-Plugin/)
3+
14
# Android-Root-Coverage-Plugin
25
**A Gradle plugin for combined code coverage reports for Android projects.**
36
Generating code coverage reports for Android Projects is in most cases quite easy. Unfortunately by
@@ -23,7 +26,7 @@ apply plugin: 'org.neotech.plugin.rootcoverage'
2326
buildscript {
2427
dependencies {
2528
// Step 1: add the dependency
26-
classpath 'org.neotech.plugin:android-root-coverage-plugin:1.0.2'
29+
classpath 'org.neotech.plugin:android-root-coverage-plugin:1.1.0'
2730
}
2831
}
2932
```

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ org.gradle.jvmargs=-Xmx1536m
1919
#PACKAGING=jar
2020

2121
GROUP=org.neotech.plugin
22-
VERSION=1.0.2
22+
VERSION=1.1.0
2323
DESCRIPTION=A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.
2424

2525
PROJECT_WEBSITE=https://github.com/NeoTech-Software/android-root-coverage-plugin

plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ gradlePlugin {
2929
}
3030

3131
pluginBundle {
32-
website = PROJECT_WEBSITE
32+
setWebsite(PROJECT_WEBSITE)
3333
vcsUrl = 'https://github.com/NeoTech-Software/Android-Root-Coverage-Plugin'
34-
description = DESCRIPTION
34+
setDescription(DESCRIPTION)
3535
tags = ['android', 'coverage', 'jacoco', 'code-coverage', 'coverage-report', 'aggregated-report']
3636

3737
plugins {

0 commit comments

Comments
 (0)