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
mvn dependency:go-offline
After running mvn dependency:go-offline, running mvn test starts downloading more dependencies.
mvn test
Steps to reproduce the behavior:
rm -rf ~/.m2/repository
mvn --file hobbit-gui/gui-serverbackend dependency:go-offline
mvn --file hobbit-gui/gui-serverbackend test
No additional dependencies are downloaded after mvn dependency:go-offline
It could be that all used maven plugins need to be explicitly defined in <build><pluginManagement>.
<build><pluginManagement>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
After running
mvn dependency:go-offline
, runningmvn test
starts downloading more dependencies.Reproducability
Steps to reproduce the behavior:
rm -rf ~/.m2/repository
mvn --file hobbit-gui/gui-serverbackend dependency:go-offline
mvn --file hobbit-gui/gui-serverbackend test
Expected behavior
No additional dependencies are downloaded after
mvn dependency:go-offline
Possible solution
It could be that all used maven plugins need to be explicitly defined in
<build><pluginManagement>
.The text was updated successfully, but these errors were encountered: