Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ plugins {
id 'checkstyle'
id 'pmd'
id 'org.jetbrains.intellij.platform' version '2.3.0'
id 'org.sonarqube' version '6.1.0.5360'
id 'org.sonarqube' version '6.2.0.5505'
}

ext {
checkstyleVersion = '10.23.1'
checkstyleVersion = '10.25.0'

pmdVersion = '7.13.0'
pmdVersion = '7.14.0'
}

def properties(String key) {
Expand Down Expand Up @@ -59,7 +59,7 @@ dependencies {
checkstyle "com.puppycrawl.tools:checkstyle:${checkstyleVersion}"
pmd "net.sourceforge.pmd:pmd-ant:${pmdVersion}",
"net.sourceforge.pmd:pmd-java:${pmdVersion}"
testImplementation platform('org.junit:junit-bom:5.12.2'),
testImplementation platform('org.junit:junit-bom:5.13.0'),
'org.junit.jupiter:junit-jupiter',
'org.junit.jupiter:junit-jupiter-engine',
'org.assertj:assertj-core:3.27.3'
Expand Down Expand Up @@ -113,7 +113,7 @@ checkstyle {

pmd {
consoleOutput = true
ruleSetFiles = files(".config/pmd/ruleset.xml")
ruleSetFiles = files(".config/pmd/java/ruleset.xml")
toolVersion = pmdVersion
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down