-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#876 - upgrade to java 21 and build files to use temurin distribution
- Loading branch information
1 parent
20f0110
commit cdac975
Showing
121 changed files
with
621 additions
and
464 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
|
||
- name: Build and analyze | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,8 @@ jobs: | |
- name: Set up JDK 17 | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 17 | ||
distribution: "zulu" | ||
java-version: 21 | ||
distribution: "temurin" | ||
cache: "maven" | ||
|
||
- name: Build and analyze | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,8 @@ jobs: | |
- name: Set up JDK 17 | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 17 | ||
distribution: "zulu" | ||
java-version: 21 | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build and analyze | ||
run: ./mvnw clean verify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 17 | ||
distribution: "zulu" | ||
java-version: 21 | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build and analyze | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "zulu" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build and analyze | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "zulu" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Start up redis via Docker Compose | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "zulu" | ||
distribution: "temurin" | ||
cache: "maven" | ||
|
||
- name: Grant execute permission for mvnw | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
java-version: "17" | ||
distribution: "zulu" | ||
java-version: "21" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build with Maven | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: 'zulu' | ||
distribution: 'temurin' | ||
cache: 'maven' | ||
- name: Build with Maven and analyze | ||
run: ./mvnw -B clean verify package --file pom.xml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: 'zulu' | ||
distribution: 'temurin' | ||
cache: 'maven' | ||
- name: Build with Maven and analyze | ||
run: ./mvnw -B clean verify package --file pom.xml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: ${{ matrix.distribution }} | ||
distribution: temurin | ||
cache: 'maven' | ||
- name: Build and analyze | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 17 | ||
distribution: "zulu" | ||
java-version: 21 | ||
distribution: "temurin" | ||
cache: "maven" | ||
|
||
- name: Build and analyze | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: "21" | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build with Maven | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
|
||
- name: Grant execute permission for mvnw | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
|
||
- name: Grant execute permission for mvnw | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
|
||
- name: Grant execute permission for mvnw | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build and analyze | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "zulu" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build and analyze | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "zulu" | ||
distribution: "temurin" | ||
cache: "maven" | ||
|
||
- name: Grant execute permission for mvnw | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
|
||
- name: Grant execute permission for mvnw | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build and analyze | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Start up databases via docker compose | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: "21" | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build with Maven | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
java-version: "17" | ||
distribution: "zulu" | ||
java-version: "21" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build with Maven | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
java-version: "17" | ||
distribution: "zulu" | ||
java-version: "21" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build with Maven | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
java-version: "17" | ||
distribution: "zulu" | ||
java-version: "21" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build with Maven | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,8 @@ jobs: | |
- name: Set up JDK 17 | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 17 | ||
distribution: "zulu" | ||
java-version: 21 | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build and analyze | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build and analyze | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build and analyze | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 21 | ||
distribution: "microsoft" | ||
distribution: "temurin" | ||
cache: "maven" | ||
|
||
- name: Grant execute permission for mvnw | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ jobs: | |
- name: Set up JDK 17 | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 17 | ||
distribution: "zulu" | ||
java-version: 21 | ||
distribution: "temurin" | ||
cache: "maven" | ||
- name: Build and analyze | ||
run: ./mvnw clean verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.