This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git
The following commit(s) were added to refs/heads/master by this push:
new 71062144 Fix build fail in benchmark profile
71062144 is described below
commit 710621449f4c76c5fb1e8ac2111b79829383d311
Author: Sebb <[email protected]>
AuthorDate: Fri Oct 27 19:39:50 2023 +0100
Fix build fail in benchmark profile
[skip ci]
---
pom.xml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/pom.xml b/pom.xml
index 1dced44d..ba6e63bb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -388,6 +388,11 @@ The following provides more details on the included
cryptographic software:
<artifactId>maven-compiler-plugin</artifactId>
<version>${commons.compiler.version}</version>
<configuration combine.self="override">
+ <!-- Needs to agree with main compiler settings; reapply the
args which are lost by the override -->
+ <compilerArgs>
+ <compilerArg>-h</compilerArg>
+ <compilerArg>target/jni-classes</compilerArg>
+ </compilerArgs>
<testIncludes>
<testInclude>**/*</testInclude>
</testIncludes>