This is an automated email from the ASF dual-hosted git repository. baedke pushed a commit to branch issue/oak-11172 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to refs/heads/issue/oak-11172 by this push: new 82d375f35f OAK-11172: add documentation about how to run DB2 in Docker 82d375f35f is described below commit 82d375f35faebd373163007c3fcba2aa77325cb6 Author: Manfred Baedke <manfred.bae...@gmail.com> AuthorDate: Wed Oct 9 17:00:39 2024 +0200 OAK-11172: add documentation about how to run DB2 in Docker Updated DB2 driver dependency. --- .../apache/jackrabbit/oak/plugins/document/DocumentStoreFixture.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentStoreFixture.java b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentStoreFixture.java index 0227f6d059..154fca1c05 100644 --- a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentStoreFixture.java +++ b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentStoreFixture.java @@ -48,7 +48,7 @@ public abstract class DocumentStoreFixture { public static final DocumentStoreFixture MONGO = new MongoFixture(); public static final DocumentStoreFixture RDB_DB2 = new RDBFixture("RDB-DB2", System.getProperty("rdb-db2-jdbc-url", - "jdbc:db2://localhost:50000/OAK"), System.getProperty("rdb-db2-jdbc-user", "oak"), System.getProperty( + "jdbc:db2://localhost:50000/oak"), System.getProperty("rdb-db2-jdbc-user", "oak"), System.getProperty( "rdb-db2-jdbc-passwd", "geheim")); public static final DocumentStoreFixture RDB_DERBY = new RDBFixture("RDB-Derby(embedded)", System.getProperty( "rdb-derby-jdbc-url", "jdbc:derby:./target/derby-ds-test;create=true"),