Files
CBE/build.gradle
2026-06-04 03:22:17 +00:00

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'
}
}