You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
382 B
Groovy
21 lines
382 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'idea'
|
|
|
|
compileJava.options.encoding = 'UTF-8'
|
|
|
|
project.ext.junitVersion = '5.3.1'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |