This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch feature/OAK-9679-support-test-on-apple-silicon in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit 51fcdd86b761c219095bfcebd56ef20ac4c3d827 Author: Konrad Windszus <[email protected]> AuthorDate: Wed Jul 6 17:34:25 2022 +0200 OAK-9679 support testing with DynamoDBLocal on Apple Silicon --- oak-segment-aws/pom.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/oak-segment-aws/pom.xml b/oak-segment-aws/pom.xml index 5f97c07a5d..476cb3ad5b 100644 --- a/oak-segment-aws/pom.xml +++ b/oak-segment-aws/pom.xml @@ -120,7 +120,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> - <version>3.1.1</version> <executions> <execution> <id>copy-dependencies</id> @@ -309,6 +308,14 @@ <type>dll</type> <scope>test</scope> </dependency> + <!-- add native implementation for Apple silicon from fork --> + <dependency> + <groupId>io.github.ganadist.sqlite4java</groupId> + <artifactId>libsqlite4java-osx-aarch64</artifactId> + <version>${sqlite4java.version}</version> + <type>dylib</type> + <scope>test</scope> + </dependency> <dependency> <groupId>com.almworks.sqlite4java</groupId> <artifactId>libsqlite4java-osx</artifactId>
