Skip to content

Commit

Permalink
Bumped up version and updated docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmuschko committed Nov 15, 2014
1 parent bddbdc1 commit f6d52a4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -21,7 +21,7 @@ example on how to retrieve it from Bintray:
}

dependencies {
classpath 'com.bmuschko:gradle-clover-plugin:2.0'
classpath 'com.bmuschko:gradle-clover-plugin:2.0.1'
}
}

Expand Down
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
@@ -1,3 +1,7 @@
### Version 2.0.1 (Novemver 15, 2014)

* Changed log level from `warn` to `info` if project doesn't have source code - [Pull Request 49](https://github.com/bmuschko/gradle-clover-plugin/pull/49).

### Version 2.0 (October 18, 2014)

* Upgrade to Gradle Wrapper 2.1.
Expand Down
10 changes: 9 additions & 1 deletion build.gradle
Expand Up @@ -17,7 +17,7 @@ apply plugin: 'com.jfrog.bintray'
//apply plugin: 'clover'

group = 'com.bmuschko'
version = '2.0'
version = '2.0.1'
defaultTasks 'clean', 'build'

sourceSets {
Expand Down Expand Up @@ -97,9 +97,15 @@ task groovydocJar(type: Jar, dependsOn: groovydoc) {
from groovydoc.destinationDir
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier 'javadoc'
from javadoc.destinationDir
}

artifacts {
archives sourcesJar
archives groovydocJar
archives javadocJar
}

publishing {
Expand All @@ -108,11 +114,13 @@ publishing {
from components.java
artifact sourcesJar
artifact groovydocJar
artifact javadocJar

pom.withXml {
def root = asNode()
root.appendNode('name', 'Gradle Clover plugin')
root.appendNode('description', 'Gradle plugin for generating a code coverage report using Clover.')
root.appendNode('url', 'https://github.com/bmuschko/gradle-clover-plugin')
root.appendNode('inceptionYear', '2012')

def scm = root.appendNode('scm')
Expand Down

0 comments on commit f6d52a4

Please sign in to comment.