Skip to content

Commit

Permalink
Update spotbugs to 6.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
ak-git committed Jun 12, 2024
1 parent 57845ff commit f2b92bd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
8 changes: 1 addition & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,9 @@ ext {
javaVersion = JavaVersion.VERSION_21
}

wrapper {
description 'Setup the Gradle wrapper'
gradleVersion = '8.8'
distributionUrl = "https://services.gradle.org/distributions/gradle-${gradleVersion}-all.zip"
}

allprojects {
group = 'com.ak'
version = '2024.06.06'
version = '2024.06.12'
apply plugin: 'idea'
idea {
module {
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.8-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
Expand Down
2 changes: 1 addition & 1 deletion libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
javamodularity-moduleplugin = '1.8.15'
sonarqube = '5.0.0.4638'
spotbugs = '6.0.15'
spotbugs = '6.0.16'
ben-manes-versions = '0.51.0'
nebula-lint = '19.0.2'

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/ak/app/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ private MainApp() {
}

public static void main(String[] args) {
Logger.getLogger(MainApp.class.getName()).info(() -> "Hello word 2024.06.06!");
Logger.getLogger(MainApp.class.getName()).info(() -> "Hello word 2024.06.12!");
}
}

0 comments on commit f2b92bd

Please sign in to comment.