- split up testdata project - allow all test classloaders to load class files from IDE bin or Gradle build directory
18 lines
205 B
Groovy
18 lines
205 B
Groovy
allprojects {
|
|
configurations {
|
|
tools
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
|
|
sourceCompatibility = 1.6
|
|
targetCompatibility = 1.6
|
|
}
|
|
|