tomcat-classloading.gradle 648 B

1234567891011121314151617181920212223242526
  1. muzzle {
  2. pass {
  3. group = "org.apache.tomcat"
  4. module = 'tomcat-catalina'
  5. versions = "[3.0.14,)"
  6. assertInverse = true
  7. }
  8. }
  9. apply from: "${rootDir}/gradle/java.gradle"
  10. apply plugin: 'org.unbroken-dome.test-sets'
  11. testSets {
  12. latestDepTest {
  13. dirName = 'test'
  14. }
  15. }
  16. dependencies {
  17. //This seems to be the earliest version that has org.apache.catalina.loader.WebappClassLoaderBase
  18. //Older versions would require slightly different instrumentation.
  19. testCompile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '8.0.14'
  20. latestDepTestCompile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '+'
  21. }