This is an automated email from the ASF dual-hosted git repository. sseifert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-testing.git
commit bfae282038277f6d3037c146feffb030b55778f2 Author: Stefan Seifert <[email protected]> AuthorDate: Fri Dec 19 11:18:33 2025 +0100 SLING-13036 switch back to derby 10.16.1.1 as 10.17.x requires java 21 --- pom.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 4d3378f..fa96cf4 100644 --- a/pom.xml +++ b/pom.xml @@ -43,6 +43,7 @@ <properties> <sling.java.version>11</sling.java.version> + <derby.version>10.16.1.1</derby.version> <project.build.outputTimestamp>1743171324</project.build.outputTimestamp> </properties> @@ -173,19 +174,19 @@ <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> - <version>10.17.1.0</version> + <version>${derby.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyshared</artifactId> - <version>10.17.1.0</version> + <version>${derby.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbytools</artifactId> - <version>10.17.1.0</version> + <version>${derby.version}</version> <scope>test</scope> </dependency>
