This is an automated email from the ASF dual-hosted git repository. sebb pushed a commit to branch sebb-docker in repository https://gitbox.apache.org/repos/asf/commons-crypto.git
The following commit(s) were added to refs/heads/sebb-docker by this push: new 335f964 How to add items to build 335f964 is described below commit 335f964f5618ce4311a5a55ad560bde26d7569ee Author: Sebb <s...@apache.org> AuthorDate: Fri Jun 17 17:36:02 2022 +0100 How to add items to build --- src/docker/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/docker/README.md b/src/docker/README.md index bc57624..fb00d06 100644 --- a/src/docker/README.md +++ b/src/docker/README.md @@ -25,6 +25,12 @@ which are used to build Linux and Windows native code files (see build.sh for th The image uses virtual mounts for the source code and Maven repository, so the output of the build is available on the host system and can be included in a subsequent release build. + +The binary jar is built from the contents of target/classes, so any additional native objects can be added to the build by copying them to the appropriate directory under +target/classes/org/apache/commons/crypto/native before creating the release. +For example, the macOS object can be added as +target/classes/org/apache/commons/crypto/native/Mac/x86_64/libcommons-crypto.jnilib + # Building with Docker ```