From e5cd310b2a00bcf9bac37f216d7dfd96c1bd0455 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Wed, 14 Dec 2022 19:19:17 +0100 Subject: [PATCH] Fixes #34 Update Build: Update jar with module.info without module packages section after shading (cherry picked from commit 3afd8d1efaab38bffb7b57da33c7cfdd39f9e1b1) --- pom.xml | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2189bb5..e65a8e8 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 org.cryptomator cryptolib - 2.1.0 + 2.1.1 Cryptomator Crypto Library This library contains all cryptographic functions that are used by Cryptomator. https://github.com/cryptomator/cryptolib @@ -210,6 +210,29 @@ + + org.codehaus.mojo + exec-maven-plugin + 3.1.0 + + + package + + exec + + + jar + ${project.build.outputDirectory} + + --verbose + --update + --file=${project.build.directory}/${project.build.finalName}.jar + META-INF/versions/9/module-info.class + + + + + org.apache.maven.plugins maven-surefire-plugin