Skip to content

Commit

Permalink
JDK 17 support - Derby fix (#2042)
Browse files Browse the repository at this point in the history
Signed-off-by: Radek Felcman <radek.felcman@oracle.com>
  • Loading branch information
rfelcman committed Jan 23, 2024
1 parent a8f70b8 commit 44610ca
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
<ant.version>1.10.14</ant.version>
<aspectj.version>1.9.20.1</aspectj.version>
<commonj.sdo.version>2.1.1</commonj.sdo.version>
<derby.version>10.16.1.1</derby.version>
<derby.version>10.17.1.0</derby.version>
<db2.version>11.5.8.0</db2.version>
<h2.version>2.2.224</h2.version>
<!-- CQ #21134, 21135, 21136, 21137 -->
Expand Down Expand Up @@ -1829,6 +1829,16 @@
</build>

<profiles>
<!--For JDK<21 use Derby 10.16.1.1 as default 10.17.x support >JDK 21-->
<profile>
<id>derby-version</id>
<activation>
<jdk>[,21)</jdk>
</activation>
<properties>
<derby.version>10.16.1.1</derby.version>
</properties>
</profile>
<!--Testing database profiles-->
<!--TODO simplify properties part db.driver.XXXX to load it from file-->
<profile>
Expand Down

0 comments on commit 44610ca

Please sign in to comment.