Skip to content

Commit

Permalink
Merge pull request quarkusio#41084 from yrodiere/derby-upgrade
Browse files Browse the repository at this point in the history
Upgrade to Derby 10.16.1.1
  • Loading branch information
gsmet authored Jun 11, 2024
2 parents 1598027 + 807a125 commit 9701b25
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
8 changes: 7 additions & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
<mssql-jdbc.version>12.6.1.jre11</mssql-jdbc.version>
<adal4j.version>1.6.7</adal4j.version>
<oracle-jdbc.version>23.3.0.23.09</oracle-jdbc.version>
<derby-jdbc.version>10.14.2.0</derby-jdbc.version>
<derby-jdbc.version>10.16.1.1</derby-jdbc.version>
<db2-jdbc.version>11.5.8.0</db2-jdbc.version>
<shrinkwrap.version>1.2.6</shrinkwrap.version>
<hamcrest.version>2.2</hamcrest.version><!-- The version needs to be compatible with both REST Assured and Awaitility -->
Expand Down Expand Up @@ -5347,6 +5347,12 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<!-- New artifact in Derby 10.15: https://db.apache.org/derby/releases/release-10.15.1.3.cgi#Note%20for%20DERBY-6945 -->
<groupId>org.apache.derby</groupId>
<artifactId>derbyshared</artifactId>
<version>${derby-jdbc.version}</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId>
Expand Down
7 changes: 7 additions & 0 deletions extensions/jdbc/jdbc-derby/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@
<groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId>
</dependency>
<!-- Required for JTA and to reference JDBC drivers by name.
See https://db.apache.org/derby/releases/release-10.15.1.3.cgi#Note%20for%20DERBY-6945
"the derbytools.jar library is now required [...] when using Derby DataSources, and when directly referencing the JDBC drivers" -->
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbytools</artifactId>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 9701b25

Please sign in to comment.