Skip to content

Commit

Permalink
Setting compatibility with JDK 21
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgrosso committed Dec 26, 2024
1 parent 3fc7456 commit 61ca719
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
java-version: 21

- name: Setup Maven
uses: stCarolas/setup-maven@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
java-version: 21

- name: Setup Maven
uses: stCarolas/setup-maven@v5
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<connid.version>1.6.0.0-SNAPSHOT</connid.version>
<rootpom.basedir>${basedir}</rootpom.basedir>

<targetJdk>17</targetJdk>
<targetJdk>21</targetJdk>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -118,13 +118,13 @@
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.16.1.1</version>
<version>10.17.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbytools</artifactId>
<version>10.16.1.1</version>
<version>10.17.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 61ca719

Please sign in to comment.