22 lines
330 B
Groovy
22 lines
330 B
Groovy
subprojects {
|
|
apply plugin: 'java'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.+'
|
|
}
|
|
|
|
sourceCompatibility = 1.6
|
|
jar {
|
|
manifest {
|
|
attributes 'Implementation-Version': '0.9.31-7'
|
|
}
|
|
}
|
|
}
|
|
|
|
//apply from: file('gradle/update.gradle')
|