Skip to content

Commit

Permalink
Use Oracle JDK
Browse files Browse the repository at this point in the history
  • Loading branch information
ak-git committed Jun 24, 2024
1 parent 4317393 commit 2ca3d41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: corretto
distribution: oracle
java-version: 21
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ext {

allprojects {
group = 'com.ak'
version = '2024.06.15'
version = '2024.06.24'
apply plugin: 'idea'
apply plugin: 'java-library'
apply plugin: 'org.javamodularity.moduleplugin'
Expand Down
2 changes: 1 addition & 1 deletion hello/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.15!");
Logger.getLogger(MainApp.class.getName()).info(() -> "Hello word 2024.06.24!");
}
}

0 comments on commit 2ca3d41

Please sign in to comment.