Details
-
Task
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.23.1
-
None
-
None
Description
The build currently runs the dependency:unpack operation for every module, extracting the artemis-native .so files into <module-dir>/target/bin for each module.
However, the the surefire argLine is configuring java.library.path to look only in <root-dir>/target/bin for the bits extracted, not the individual <module-dir>/target/bin dirs. As such, the per-module output isnt actually being used except the one in the root, meaning all the other executions are superfluous and can be disabled. This will be done by setting the dependency plugin definition not to be inherited by the child modules as it currently is being.