benchmark-integration.gradle 416 B

1234567891011121314151617181920
  1. buildscript {
  2. repositories {
  3. jcenter()
  4. }
  5. dependencies {
  6. classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
  7. }
  8. }
  9. apply from: "${rootDir}/gradle/java.gradle"
  10. description = 'Integration Level Agent benchmarks.'
  11. sourceCompatibility = 1.8
  12. targetCompatibility = 1.8
  13. subprojects { sub ->
  14. sub.apply plugin: 'com.github.johnrengelman.shadow'
  15. sub.apply from: "${rootDir}/gradle/java.gradle"
  16. }