You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,13 @@
1
1
# Change Log
2
2
3
-
Version 0.18.0 *(In development)*
4
-
---------------------------------
3
+
Version 0.18.0 *(2019-04-18)*
4
+
-----------------------------
5
+
6
+
- Support ktlint's experimental flag and update default version to 0.31.0 [\#186](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/186) ([vanniktech](https://github.com/vanniktech))
- Fix README link now that everything is in Kotlin. [\#184](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/184) ([vanniktech](https://github.com/vanniktech))
9
+
- Gradle 5 is required [\#183](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/183) ([vanniktech](https://github.com/vanniktech))
10
+
- Detekt: Support RC13 + RC14. [\#180](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/180) ([vanniktech](https://github.com/vanniktech))
Copy file name to clipboardExpand all lines: README.md
+4-15Lines changed: 4 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# gradle-code-quality-tools-plugin
2
2
3
-
Gradle plugin that configures [Error Prone](http://errorprone.info/), [Findbugs](http://findbugs.sourceforge.net/), [Checkstyle](http://checkstyle.sourceforge.net/), [PMD](https://pmd.github.io/), [CPD](https://pmd.github.io/pmd-6.0.0/#cpd), [Lint](https://developer.android.com/studio/write/lint.html), [Detekt](https://github.com/arturbosch/detekt) & [Ktlint](https://github.com/shyiko/ktlint). All of these tools are also automatically hooked into the `check` gradle task. Below, I'll go more into depth how each of those plugins are configured.
3
+
Gradle plugin that configures [Error Prone](http://errorprone.info/), [Checkstyle](http://checkstyle.sourceforge.net/), [PMD](https://pmd.github.io/), [CPD](https://pmd.github.io/pmd-6.0.0/#cpd), [Lint](https://developer.android.com/studio/write/lint.html), [Detekt](https://github.com/arturbosch/detekt) & [Ktlint](https://github.com/shyiko/ktlint). All of these tools are also automatically hooked into the `check` gradle task. Below, I'll go more into depth how each of those plugins are configured.
@@ -131,10 +124,6 @@ Here I'll give a bit more information about how each of the tools will be applie
131
124
132
125
It'll apply the [Error Prone Gradle Plugin](https://github.com/tbroyer/gradle-errorprone-plugin) which will run together with `assemble`. There's no report generated for this but you'll get compile warnings & errors.
133
126
134
-
### Findbugs
135
-
136
-
It'll apply the [Findbugs Plugin](https://docs.gradle.org/current/userguide/findbugs_plugin.html) and generate the `findbugs` task that will execute findbugs. The configuration properties of `codeQualityTools -> findbugs` mirror the [properties from the plugin](https://docs.gradle.org/current/dsl/org.gradle.api.plugins.quality.FindBugsExtension.html).
137
-
138
127
### Checkstyle
139
128
140
129
It'll apply the [Checkstyle Plugin](https://docs.gradle.org/current/userguide/checkstyle_plugin.html) and generate the `checkstyle` task that will execute checkstyle. The configuration properties of `codeQualityTools -> checkstyle` mirror the [properties from the plugin](https://docs.gradle.org/current/dsl/org.gradle.api.plugins.quality.CheckstyleExtension.html).
0 commit comments