Skip to content

Commit

Permalink
Upgrading few dependencies - static analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
surajcm committed May 27, 2024
1 parent 84ebc94 commit 4d9b442
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:21.0.2_13-jdk
FROM eclipse-temurin:21.0.3_9-jdk
COPY . .
RUN sed -i '/JAVA_HOME/d' build.sh && chmod +x /start.sh && chmod +x build.sh && chmod +x gradlew
VOLUME ["/tmp/db"]
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
id 'net.ltgt.errorprone' version '3.1.0'
id 'com.github.spotbugs' version '6.0.8' apply false
id 'de.aaschmid.cpd' version '3.3'
id "org.sonarqube" version "4.4.1.3373"
id "org.sonarqube" version "5.0.0.4638"
}

group = 'com.quiz.darkhold'
Expand Down
6 changes: 3 additions & 3 deletions gradle/staticCodeAnalysis.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'jacoco'
//apply plugin: 'com.github.spotbugs'

checkstyle {
toolVersion = '10.14.1'
toolVersion = '10.17.0'
ignoreFailures = false
maxWarnings = 0
checkstyleMain {
Expand All @@ -22,7 +22,7 @@ checkstyle {
//}

pmd {
toolVersion = '6.55.0'
toolVersion = '7.1.0'
ignoreFailures = true
ruleSetFiles = files("config/pmd/ruleset.xml")
ruleSets = []
Expand All @@ -31,7 +31,7 @@ pmd {
}

jacoco {
toolVersion = "0.8.11"
toolVersion = "0.8.12"
reportsDirectory = file("build/reports/jacoco/")
}

Expand Down

0 comments on commit 4d9b442

Please sign in to comment.