Skip to content

Commit

Permalink
Prepare version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vanniktech committed Jul 16, 2016
1 parent 3cf27bf commit 684575c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Version 0.4.0 *(In development)*
--------------------------------

- Update Default PMD Version to 5.5.0 [\#38](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/38) ([vanniktech](https://github.com/vanniktech))
- Update Default Checkstyle Version to 7.0 [\#37](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/37) ([vanniktech](https://github.com/vanniktech))
- Findbugs extension: Add effort + reportLevel [\#36](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/36) ([vanniktech](https://github.com/vanniktech))
- Checkstyle + PMD: Include + exclude extension [\#35](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/35) ([vanniktech](https://github.com/vanniktech))
- Add source attribute to Findbugs, PMD & Checkstyle extension [\#34](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/34) ([vanniktech](https://github.com/vanniktech))
- PMD: Remove unnecessary dependency to assemble task [\#33](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/33) ([vanniktech](https://github.com/vanniktech))

Version 0.3.0 *(2016-05-16)*
----------------------------

Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.vanniktech:gradle-code-quality-tools-plugin:0.3.0'
classpath 'com.vanniktech:gradle-code-quality-tools-plugin:0.4.0'
}
}
Expand Down Expand Up @@ -50,6 +50,9 @@ codeQualityTools {
toolVersion = '3.0.1' // type String
excludeFilter = 'code_quality_tools/findbugs-filter.xml' // type String
ignoreFailures // type Boolean
source = 'src' // type String
effort = 'max' // type String
reportLevel = 'low' // type String
}
checkstyle {
Expand All @@ -58,13 +61,19 @@ codeQualityTools {
configFile = 'code_quality_tools/checkstyle.xml' // type String
ignoreFailures // type Boolean
showViolations // type Boolean
source = 'src' // type String
include = '**/*.java' // type String
exclude = '**/gen/**' // type String
}
pmd {
enabled = true // type boolean
toolVersion = '5.4.1' // type String
ruleSetFile = 'code_quality_tools/pmd.xml' // type String
ignoreFailures // type Boolean
source = 'src' // type String
include = '**/*.java' // type String
exclude = '**/gen/**' // type String
}
lint {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.vanniktech
VERSION_NAME=0.4.0-SNAPSHOT
VERSION_NAME=0.4.0

POM_ARTIFACT_ID=gradle-code-quality-tools-plugin
POM_NAME=Gradle Code Quality Tools Plugin
Expand Down

0 comments on commit 684575c

Please sign in to comment.