forked from Hithomelabs/ci-runner-test
21 lines
269 B
Groovy
21 lines
269 B
Groovy
plugins {
|
|
id 'application'
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
|
|
}
|
|
|
|
application {
|
|
mainClass = 'com.hithomelabs.App'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|