21 lines
		
	
	
		
			416 B
		
	
	
	
		
			Groovy
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			416 B
		
	
	
	
		
			Groovy
		
	
	
	
| buildscript {
 | |
|   repositories {
 | |
|     jcenter()
 | |
|   }
 | |
|   dependencies {
 | |
|     classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
 | |
|   }
 | |
| }
 | |
| 
 | |
| apply from: "${rootDir}/gradle/java.gradle"
 | |
| 
 | |
| description = 'Integration Level Agent benchmarks.'
 | |
| 
 | |
| sourceCompatibility = 1.8
 | |
| targetCompatibility = 1.8
 | |
| 
 | |
| subprojects { sub ->
 | |
|   sub.apply plugin: 'com.github.johnrengelman.shadow'
 | |
|   sub.apply from: "${rootDir}/gradle/java.gradle"
 | |
| }
 |