Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit e064316

Browse files
committed
1.3.0.9 - java 21
1 parent 9e28b1d commit e064316

File tree

16 files changed

+30
-30
lines changed

16 files changed

+30
-30
lines changed

.github/workflows/build-dev-environment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
gpg_private_key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
2626
passphrase: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
2727

28-
- name: Set up JDK 17
28+
- name: Set up JDK 21
2929
uses: actions/setup-java@v3
3030
with:
31-
java-version: '17'
32-
distribution: 'temurin'
31+
java-version: '21'
32+
distribution: 'corretto'
3333

3434
- name: Build with Maven
3535
env:

.github/workflows/build-production.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
gpg_private_key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
2525
passphrase: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
2626

27-
- name: Set up Java
27+
- name: Set up JDK 21
2828
uses: actions/setup-java@v3
2929
with:
30-
java-version: '17'
31-
distribution: 'temurin'
30+
java-version: '21'
31+
distribution: 'corretto'
3232
server-id: ossrh
3333
server-username: MAVEN_USERNAME
3434
server-password: MAVEN_PASSWORD
@@ -56,11 +56,11 @@ jobs:
5656
gpg_private_key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
5757
passphrase: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
5858

59-
- name: Set up JDK 17
59+
- name: Set up JDK 21
6060
uses: actions/setup-java@v3
6161
with:
62-
java-version: '17'
63-
distribution: 'temurin'
62+
java-version: '21'
63+
distribution: 'corretto'
6464
cache: maven
6565

6666
- name: Build with Maven

.github/workflows/build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
- name: Checkout Code
1919
uses: actions/checkout@v3
2020

21-
- name: Set up JDK 17
21+
- name: Set up JDK 21
2222
uses: actions/setup-java@v3
2323
with:
24-
java-version: '17'
25-
distribution: 'temurin'
24+
java-version: '21'
25+
distribution: 'corretto'
2626
cache: maven
2727

2828
- name: Build with Maven

.github/workflows/sonarqube-scan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616

17-
- name: Set up JDK 17
17+
- name: Set up JDK 21
1818
uses: actions/setup-java@v3
1919
with:
20-
java-version: '17'
21-
distribution: 'temurin'
20+
java-version: '21'
21+
distribution: 'corretto'
2222
cache: maven
2323

2424
- id: import_gpg

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM openjdk:17-alpine
1+
FROM amazoncorretto:21-alpine
22

33
ARG service_name
44
ARG service_base_dir
55
ENV SERVICE_NAME=${service_name}
66
ENV SERVICE_BASE_DIR=${service_base_dir}
7-
ENV APP_VERSION=1.3.0.8
7+
ENV APP_VERSION=1.3.0.9
88

99
WORKDIR /container/java
1010

modules/core/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>fr.funixgaming.api.core</groupId>
88
<artifactId>funixgaming-core</artifactId>
9-
<version>1.3.0.8</version>
9+
<version>1.3.0.9</version>
1010
</parent>
1111

1212
<groupId>fr.funixgaming.api.core.client</groupId>

modules/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>fr.funixgaming.api</groupId>
88
<artifactId>funixgaming-api</artifactId>
9-
<version>1.3.0.8</version>
9+
<version>1.3.0.9</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

modules/core/service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>fr.funixgaming.api.core</groupId>
88
<artifactId>funixgaming-core</artifactId>
9-
<version>1.3.0.8</version>
9+
<version>1.3.0.9</version>
1010
</parent>
1111

1212
<groupId>fr.funixgaming.api.core.service</groupId>

modules/core/test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>fr.funixgaming.api.core</groupId>
88
<artifactId>funixgaming-core</artifactId>
9-
<version>1.3.0.8</version>
9+
<version>1.3.0.9</version>
1010
</parent>
1111

1212
<groupId>fr.funixgaming.api.core.test</groupId>

modules/funixbot/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>fr.funixgaming.api.funixbot</groupId>
88
<artifactId>funixgaming-funixbot</artifactId>
9-
<version>1.3.0.8</version>
9+
<version>1.3.0.9</version>
1010
</parent>
1111

1212
<groupId>fr.funixgaming.api.funixbot.client</groupId>

0 commit comments

Comments
 (0)