appassembler
appassembler copied to clipboard
Fix for Issue #49 Upgraded mojo-parent to latest (61) Explicit versions for plexus & enforcer plugins Set provided scope for maven dependencies in appasembler-maven-plugin Developed at #Javaland 2021 #Hackergarten along...
Overriding the default `` and `` requires setting absolute paths instead of relative. if the configuration is set to ```xml org.codehaus.mojo appassembler-maven-plugin src/main/assembly/unixBinTemplate src/main/assembly/windowsBinTemplate ``` Then a an exception occurs...
This prevents the Windows script from crashing if %JAVACMD% contains whitespace.
Here in the Windows script, %JAVACMD% is unquoted: ``` %JAVACMD% %JAVA_OPTS% -classpath %CLASSPATH% -Dapp.name="skipper" -Dapp.repo="%REPO%" -Dapp.home="%BASEDIR%" -Dbasedir="%BASEDIR%" com.arcadsoftware.skipper.cli.SkipperCLI %CMD_LINE_ARGS% if %ERRORLEVEL% NEQ 0 goto error goto end ``` It causes...
I'm packaging my app using the Maven shade plugin to create an uber jar. I'd like to generate a repo containing the single fat jar and scripts that run the...
When using appassembler-maven-plugin:2.1.0:generate-daemons, the plugin prints "Installing artifact x...." for every artifact, I would like to have an option to be able to silence this message, to make build logs...
jsw 3.5.38 is support linux arm,please update internal verison of jsw and support arm platform, thx.
As far as I know, an autoupdate of the generated application isn't yet possible. Would someone be willing to work on that with me? Here's the plan: 1.) Introduce a...
At the moment `` can only be set at the highest-level configuration. We should also allow this to be set on a per-daemon basis. Sometimes you have multiple daemons which...
Regression that was introduced as part of b472009 Stopped interpolation (`@BASEDIR@` and `@REPO@`) of command line args containing file paths from being constructed correctly. See https://github.com/eXist-db/exist/issues/3101