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
Custom plugin repositories should be configurable.
Configuration could look like the following example:
steps: - uses: s4u/maven-settings-action@master with: pluginRepositories: >- [{ "id": "repoId", "name": "repoName", "url": "url", "snapshots": { "enabled": true } }]
This should result in a settings.xml file like the following:
<profiles> <profile> <id>_custom_repositories_</id> <activation> <activeByDefault>true</activeByDefault> </activation> <repositories/> <pluginRepositories> <pluginRepository> <id>repoId</id> <name>repoName</name> <url>url</url> <snapshots><enabled>true</enabled></snapshots> </pluginRepository> </pluginRepositories> </profile> </profiles>
The text was updated successfully, but these errors were encountered:
Resolves s4u#348, plugin repositories support
f8ee0f6
fcbb35d
Resolves #348, plugin repositories support
074e0bf
slawekjaranowski
Successfully merging a pull request may close this issue.
The Request
Custom plugin repositories should be configurable.
The Solution
Configuration could look like the following example:
This should result in a settings.xml file like the following:
The text was updated successfully, but these errors were encountered: