Skip to content

Commit

Permalink
Update maven wrapper to version 4.0.0-rc-1 that needs jdk 17
Browse files Browse the repository at this point in the history
Update maven wrapper to version 4.0.0-rc-1 that needs jdk 17

closes #4
0
  • Loading branch information
derTobsch committed Dec 2, 2024
1 parent f66eac0 commit 4ab14c0
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
java-version: '17'
cache: 'maven'
- name: Build
run: ./mvnw clean verify -Dtests.groups=BenchmarkTest
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,24 @@ jobs:
name: build and analyse
strategy:
matrix:
java: [ '11', '17', '21', '22', '23' ]
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
java-compile: ['11', '17', '21', '22', '23']
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
include:
- java-runtime: '23'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK ${{ matrix.java }}
- name: Set up JDK ${{ matrix.java-runtime }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
java-version: ${{ matrix.java-runtime }}
cache: 'maven'
- name: Build
run: ./mvnw -Pcoverage clean verify
run: ./mvnw -Pcoverage clean verify -Djava.version=${{ matrix.java-compile }}
- name: Analyse with SonarCloud
if: ${{ github.repository == 'focus-shift/jollyday' && matrix.java == 21 && matrix.os == 'ubuntu-latest' && (github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')) }}
run: >
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/release-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,24 @@ jobs:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up JDK 11

- name: Set up JDK 17 as runtime
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
java-version: 17
cache: 'maven'

- name: Build
run: ./mvnw clean verify

- name: Create Release Notes
uses: docker://decathlon/release-notes-generator-action:3.1.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OUTPUT_FOLDER: .chglog/
FILENAME: ${{ github.event.inputs.releaseVersion }}

- name: Setup git user
uses: fregante/setup-git-user@v2
- name: Commit Release Notes
Expand All @@ -51,6 +55,7 @@ jobs:
with:
github_token: ${{ secrets.AM_PAT }}
branch: ${{ github.ref }}

- name: Set release version
run: ./mvnw versions:set -DnewVersion=${{ github.event.inputs.releaseVersion }}
- name: Commit release version
Expand All @@ -62,6 +67,7 @@ jobs:
with:
github_token: ${{ secrets.AM_PAT }}
branch: ${{ github.ref }}

- name: Set new snapshot version
run: ./mvnw versions:set -DnewVersion=${{ github.event.inputs.nextVersion }}
- name: Commit new snapshot version
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,33 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
java-version: 17
cache: 'maven'
server-id: 'ossrh'
server-username: OSSRH_USERNAME
server-password: OSSRH_PASSWORD
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: GPG_PASSPHRASE

- name: Tests with Maven
run: ./mvnw clean verify

- name: Build with Maven
run: ./mvnw -Prelease -Drelease deploy
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- name: Extract release tag
id: vars
run: echo "version=${GITHUB_REF#refs/*/v}" >> $GITHUB_OUTPUT

- name: Create Release
uses: softprops/action-gh-release@v2
env:
Expand Down
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
# under the License.
wrapperVersion=3.3.2
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/4.0.0-rc-1/apache-maven-4.0.0-rc-1-bin.zip
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
java temurin-11.0.23+9
java temurin-17.0.13+11

0 comments on commit 4ab14c0

Please sign in to comment.