17 lines
319 B
Groovy
17 lines
319 B
Groovy
|
|
plugins {
|
||
|
|
id 'java'
|
||
|
|
id 'application'
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation("se.koc:zutil:1.0.0-SNAPSHOT")
|
||
|
|
|
||
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
|
||
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
|
||
|
|
}
|
||
|
|
|
||
|
|
//runtimeOnly project(':trader-frontend')
|
||
|
|
|
||
|
|
test {
|
||
|
|
useJUnitPlatform()
|
||
|
|
}
|