Skip to content

Commit

Permalink
Update gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
ak-git committed Apr 3, 2024
1 parent d7564f8 commit e12b6f9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: 8.6
gradle-version: 8.7
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
Expand Down
1 change: 0 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ ext {

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

allprojects {
group = 'com.ak'
version = '2024.03.08'
version = '2024.04.03'
apply plugin: 'idea'
idea {
module {
Expand All @@ -64,7 +64,7 @@ allprojects {
targetCompatibility = javaVersion

jacoco {
toolVersion = '0.8.9'
toolVersion = '0.8.12'
}

jacocoTestReport {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
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.6-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
javamodularity-moduleplugin = '1.8.15'
sonarqube = '4.4.1.3373'
spotbugs = '6.0.8'
sonarqube = '5.0.0.4638'
spotbugs = '6.0.9'
ben-manes-versions = '0.51.0'
nebula-lint = '19.0.1'

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.03.08!");
Logger.getLogger(MainApp.class.getName()).info(() -> "Hello word 2024.04.03!");
}
}

0 comments on commit e12b6f9

Please sign in to comment.