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
As reported in https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=835514 change of scope for junit and easymock resulted in practical problem downstream.
The following patch restores old behaviour:
--- a/java/core/pom.xml +++ b/java/core/pom.xml @@ -22,14 +22,17 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymockclassextension</artifactId> + <scope>test</scope> </dependency> </dependencies>
The text was updated successfully, but these errors were encountered:
Could you submit the patch as a pull request?
Sorry, something went wrong.
Is this send as a PR?
Changed scope of Java deps to "test".
496cd48
This is per: protocolbuffers#2019
No branches or pull requests
As reported in https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=835514
change of scope for junit and easymock resulted in practical problem downstream.
The following patch restores old behaviour:
The text was updated successfully, but these errors were encountered: