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
mvnw help:evaluate
the provided settings.xml file requires a value ${repository.url} to be set, which is not set by the out script.
${repository.url}
As a result the mvnw help:evaluate call in https://github.com/nulldriver/maven-resource/blob/master/assets/out#L87 fails when trying to retrieve deps using ${repository.url} as the repository.
Since this is a command run when trying to set a sh var, it fails the script silently without any indicator of what went wrong.
Adding maven_opts: -Drepository.url=<your url> to the pipeline params will fix this, but this should probably be fixed in the scripts or config.
maven_opts: -Drepository.url=<your url>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the provided settings.xml file requires a value
${repository.url}
to be set, which is not set by the out script.As a result the
mvnw help:evaluate
call in https://github.com/nulldriver/maven-resource/blob/master/assets/out#L87 fails when trying to retrieve deps using${repository.url}
as the repository.Since this is a command run when trying to set a sh var, it fails the script silently without any indicator of what went wrong.
Adding
maven_opts: -Drepository.url=<your url>
to the pipeline params will fix this, but this should probably be fixed in the scripts or config.The text was updated successfully, but these errors were encountered: