Skip to content

Commit 6f5345d

Browse files
committed
java versions
1 parent 935156a commit 6f5345d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/dep_build_v2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
java_version: ['11', '17']
16+
java_version: ['17', '21']
1717
env:
1818
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
1919
steps:

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
# 20-Dec-2022, tatu: Build now requires JDK 11; won't yet work with JDK 17
21-
java_version: [ '11']
20+
# Hibernate 7 requires Java 17+
21+
java_version: [ '17' ]
2222
env:
2323
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2424
steps:

hibernate6/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ Hibernate (https://hibernate.org/) version 6.x with Jakarta data types.
7676
<groupId>org.apache.maven.plugins</groupId>
7777
<artifactId>maven-compiler-plugin</artifactId>
7878
<configuration>
79-
<source>8</source>
80-
<target>8</target>
79+
<source>11</source>
80+
<target>11</target>
8181
</configuration>
8282
</plugin>
8383
<plugin>

0 commit comments

Comments
 (0)