From 3be91e4b3aebc389e49811ab64b16a324ef88477 Mon Sep 17 00:00:00 2001 From: Peter Doornbosch Date: Fri, 10 Jan 2025 17:46:09 +0100 Subject: [PATCH 1/2] bump versions to make it work with recent maven version --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 06bd06a..3736d97 100644 --- a/pom.xml +++ b/pom.xml @@ -128,14 +128,14 @@ maven-compiler-plugin 3.7.0 - 1.7 - 1.7 + 8 + 8 org.jacoco jacoco-maven-plugin - 0.8.1 + 0.8.12 prepare-agent From 8a7a5c5a9e334ff74b889f5963c0bf6f20cd8208 Mon Sep 17 00:00:00 2001 From: Peter Doornbosch Date: Fri, 10 Jan 2025 17:49:36 +0100 Subject: [PATCH 2/2] make it a Java module --- pom.xml | 4 ++-- src/main/java/module-info.java | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 src/main/java/module-info.java diff --git a/pom.xml b/pom.xml index 3736d97..4c9d00c 100644 --- a/pom.xml +++ b/pom.xml @@ -128,8 +128,8 @@ maven-compiler-plugin 3.7.0 - 8 - 8 + 9 + 9 diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java new file mode 100644 index 0000000..f356161 --- /dev/null +++ b/src/main/java/module-info.java @@ -0,0 +1,3 @@ +module io.whitfin.siphash { + exports io.whitfin.siphash; +} \ No newline at end of file