We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are two issues:
*\start.ps1
--jvm
Using the Helidon application https://github.com/helidon-io/helidon/tree/main/tests/integration/packaging/se-1
mvn -Pjlink-image verify .\target\helidon-tests-integration-packaging-se-1-jri\bin\start.ps1 --jvm "-Dapp.static.path=../../web"
The workaround is to use this command:
.\target\helidon-tests-integration-packaging-se-1-jri\bin\start.ps1 --jvm "`"-Dapp.static.path=../../web`""
Question is: Should we keep this behavior ?
app.static.path
mvn -Pjlink-image verify .\target\helidon-tests-integration-packaging-se-1-jri\bin\start.ps1
The text was updated successfully, but these errors were encountered:
You are running these command in powershell, so the outer quotes might be interpreted by your shell.
The backtick character is an escape similar to \, so if you do
\
"`"-Dfoo.bar`""
It's equivalent to this java code:
"\"-Dfoo.bar\""
Have you tried with single quotes instead of double quotes ?
Sorry, something went wrong.
tvallin
No branches or pull requests
Problem description
There are two issues:
*\start.ps1
using the--jvm
option are not guarded by ' " ' character.Reproducer
Using the Helidon application https://github.com/helidon-io/helidon/tree/main/tests/integration/packaging/se-1
The workaround is to use this command:
Question is: Should we keep this behavior ?
app.static.path
option through configuration.The text was updated successfully, but these errors were encountered: