-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from retailnext/update-to-java-17
Update to java 17
- Loading branch information
Showing
6 changed files
with
25 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,10 +12,14 @@ jobs: | |
packages: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Zulu 8 | ||
- name: Set up Maven | ||
uses: stCarolas/[email protected] | ||
with: | ||
maven-version: 3.9.3 | ||
- name: Set up Zulu 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
java-version: '17' | ||
distribution: 'zulu' | ||
cache: 'maven' | ||
- name: Build with Maven | ||
|
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 |
---|---|---|
|
@@ -6,10 +6,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Zulu 8 | ||
- name: Set up Maven | ||
uses: stCarolas/[email protected] | ||
with: | ||
maven-version: 3.9.3 | ||
- name: Set up Zulu 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
java-version: '17' | ||
distribution: 'zulu' | ||
cache: 'maven' | ||
- name: Build with Maven | ||
|
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 |
---|---|---|
|
@@ -13,10 +13,14 @@ jobs: | |
if: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Zulu 8 | ||
- name: Set up Maven | ||
uses: stCarolas/[email protected] | ||
with: | ||
maven-version: 3.9.3 | ||
- name: Set up Zulu 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
java-version: '17' | ||
distribution: 'zulu' | ||
- name: Deploy Release with Maven | ||
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 |
---|---|---|
|
@@ -17,3 +17,5 @@ buildNumber.properties | |
.project | ||
# JDT-specific (Eclipse Java Development Tools) | ||
.classpath | ||
# IntelliJ | ||
.idea |
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 |
---|---|---|
@@ -1,13 +1,5 @@ | ||
{ | ||
"extends": [ | ||
"config:base" | ||
], | ||
"packageRules": [ | ||
{ | ||
"matchPackageNames": [ | ||
"org.eclipse.jetty:jetty-maven-plugin" | ||
], | ||
"allowedVersions": "<10" | ||
} | ||
] | ||
} | ||
} |