Skip to content

Commit

Permalink
Update libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
ak-git committed Nov 26, 2023
1 parent c6a1086 commit 1b622e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
id 'jacoco'
id "application"
id "com.github.spotbugs" version '5.0.14'
id "com.github.ben-manes.versions" version "0.49.0"
id "com.github.ben-manes.versions" version "0.50.0"
id "nebula.lint" version "18.1.0"
}

Expand All @@ -34,8 +34,8 @@ sonar {
}

ext {
test = 'org.junit:junit-bom:5.10.0'
testJupiter = 'org.junit.jupiter:junit-jupiter:5.10.0'
test = 'org.junit:junit-bom:5.10.1'
testJupiter = 'org.junit.jupiter:junit-jupiter:5.10.1'
jsr305 = 'com.google.code.findbugs:jsr305:3.0.2'
javaVersion = JavaVersion.VERSION_20
}
Expand All @@ -48,7 +48,7 @@ wrapper {

allprojects {
group = 'com.ak'
version = '2023.10.11'
version = '2023.11.26'
apply plugin: 'idea'
idea {
module {
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 @@ -8,6 +8,6 @@ private MainApp() {
}

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

0 comments on commit 1b622e9

Please sign in to comment.