25 lines
373 B
Groovy
25 lines
373 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
allprojects {
|
|
group = 'com.cbe'
|
|
version = '0.1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
dependencies {
|
|
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
}
|
|
}
|