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
Integration test apply wrong classpath order and as result class shadowing isn't work.
task showClassPathTest() { doLast { sourceSets.integTest.runtimeClasspath.each { println it} } }
Result:
/.../build/classes/java/integTest /.../build/resources/integTest ... jars ... /.../build/classes/java/test /.../build/resources/test /.../build/classes/java/main /.../build/resources/main
And expected result:
/.../build/classes/java/integTest /.../build/resources/integTest /.../build/classes/java/test /.../build/resources/test /.../build/classes/java/main /.../build/resources/main ... jars ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Integration test apply wrong classpath order and as result class shadowing isn't work.
Result:
And expected result:
The text was updated successfully, but these errors were encountered: