kirklund opened a new pull request #6863:
URL: https://github.com/apache/geode/pull/6863
Fix circular dependencies that add geode-*module*.jars to the classpath
of tests in:
- geode-core
- geode-cq
- geode-gfsh
- geode-maangement
- geode-wan
- geode-web-api
The fix involves excluding the geode-*module* itself within dependency
blocks on other modules that transitively have dependencies on the
dependent geode-*module*.
Example in geode-core:
integrationTestImplementation(project(':geode-gfsh')) {
exclude module: 'geode-core'
}
integrationTestImplementation(project(':geode-junit')) {
exclude module: 'geode-core'
}
integrationTestImplementation(project(':geode-dunit')) {
exclude module: 'geode-core'
}
integrationTestImplementation(project(':geode-log4j')) {
exclude module: 'geode-core'
}
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]