26 lines
593 B
Groovy
26 lines
593 B
Groovy
|
allprojects {
|
||
|
group 'drone.simulator'
|
||
|
version '1.0'
|
||
|
}
|
||
|
|
||
|
subprojects {
|
||
|
apply plugin: 'java'
|
||
|
|
||
|
sourceCompatibility = JavaVersion.VERSION_16
|
||
|
targetCompatibility = JavaVersion.VERSION_16
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'ch.qos.logback:logback-classic:1.3.0-alpha4'
|
||
|
implementation 'ch.qos.logback:logback-core:1.3.0-alpha4'
|
||
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
|
||
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
}
|