Skip to content

Commit

Permalink
prepared next release v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aaschmid committed Feb 8, 2015
1 parent 430dc9b commit 59515b4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ buildscript {
}
}
// optional - default is 5.1.0
// optional - default is 5.2.3
cpd {
// As PMD was split with v5.2.0 and CPD has moved to 'pmd-core', 'toolVersion' is just available for 5.2.0 and higher
toolVersion = '5.0.5'
toolVersion = '5.2.1'
}
// optional - default report is xml and default source is 'main' and 'test'
Expand All @@ -77,18 +77,23 @@ cpdCheck {
}
```

*Note:* With v0.2, I have renamed the default task from ```cpd``` to ```cpdCheck``` that it does no long have a name clash.

Release notes
-------------

### tbd. (tbd.)

* ...

### [v0.2](http://search.maven.org/#artifactdetails|de.aaschmid.gradle.plugins|gradle-cpd-plugin|0.2|jar) (8-Feb-2015)

* Directly call CPD instead of using Gradle's ```AntBuilder``` ([#1](/../../issues/1))
* Use ```sourceSets``` of the project which is plugin applied to by default ([#4](/../../issues/4))
* Added docu for multi-module build and CPD for the whole project ([#6](/../../issues/6))
* ...
* Added warning if cpd task is not executed because only subprojects apply 'java' plugin ([#3](/../../issues/3))

### v0.1 (25-Apr-2014)
### [v0.1](http://search.maven.org/#artifactdetails|de.aaschmid.gradle.plugins|gradle-cpd-plugin|0.1|jar) (25-Apr-2014)

* initial release

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'jacoco'

description = 'Gradle plugin to find duplicate code using PMDs copy/paste detection (= CPD)'
group = 'de.aaschmid.gradle.plugins'
version = '0.2-SNAPSHOT'
version = '0.2'

sourceCompatibility = '1.6'

Expand Down

0 comments on commit 59515b4

Please sign in to comment.