Skip to content

Commit

Permalink
update tools and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
xvik committed Apr 21, 2021
1 parent 47a7156 commit ec64e59
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
* Fix gradle 7 compatibility (for checkstyle plugin)
* Update checkstyle 8.39 -> 8.41.1
* Update checkstyle config:
- Add [RecordComponentName](https://checkstyle.sourceforge.io/config_naming.html#RecordComponentName)
* Update pmd 6.31 -> 6.33 (java 16 support)
* Update spotbugs 4.2.1 -> 4.2.3
* Update spotbugs plugin 4.6.0 -> 4.7.0
* Update codenarc 2.0.0 -> 2.1.0

### 4.5.0 (2021-02-06)
* Fix report separating lines disappear in intellij IDEA output (appears when gradle output recognized as junit test output).
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.gradle.plugin-publish' version '0.12.0'
id 'com.gradle.plugin-publish' version '0.14.0'
id 'java-gradle-plugin'
id 'groovy'
id 'jacoco'
Expand All @@ -8,8 +8,8 @@ plugins {
id 'com.jfrog.bintray' version '1.8.5'
id 'ru.vyarus.java-lib' version '2.1.0'
id 'ru.vyarus.github-info' version '1.2.0'
id 'com.github.ben-manes.versions' version '0.33.0'
id "pl.droidsonroids.jacoco.testkit" version "1.0.7"
id 'com.github.ben-manes.versions' version '0.38.0'
id "pl.droidsonroids.jacoco.testkit" version "1.0.8"
id 'ru.vyarus.mkdocs' version '2.0.1'
}

Expand All @@ -21,13 +21,13 @@ wrapper {

repositories { mavenCentral(); gradlePluginPortal() }
dependencies {
implementation 'gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:4.6.0'
implementation 'gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:4.7.0'

testImplementation('org.spockframework:spock-core:1.3-groovy-2.5') {
exclude group: 'org.codehaus.groovy'
}
testImplementation 'ru.vyarus:gradle-animalsniffer-plugin:1.5.1'
testImplementation 'de.aaschmid:gradle-cpd-plugin:3.1'
testImplementation 'ru.vyarus:gradle-animalsniffer-plugin:1.5.3'
testImplementation 'de.aaschmid:gradle-cpd-plugin:3.2'
}

group = 'ru.vyarus'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ class QualityExtension {
sourceSets = [project.sourceSets.main] as Collection<SourceSet>
}

String checkstyleVersion = '8.39'
String pmdVersion = '6.31.0'
String spotbugsVersion = '4.2.1'
String codenarcVersion = '2.0.0'
String checkstyleVersion = '8.41.1'
String pmdVersion = '6.33.0'
String spotbugsVersion = '4.2.3'
String codenarcVersion = '2.1.0'

/**
* Sets AnimalSniffer version.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@
<module name="PackageName"/>
<module name="ParameterName"/>
<module name="PatternVariableName"/>
<module name="RecordComponentName"/>
<module name="RecordTypeParameterName"/>
<module name="StaticVariableName"/>
<module name="TypeName"/>
Expand Down

0 comments on commit ec64e59

Please sign in to comment.