trader/trader-backend/build.gradle

17 lines
319 B
Groovy
Raw Permalink Normal View History

2021-11-20 23:03:05 +01:00
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()
}