mirror of
https://github.com/processing/processing4.git
synced 2026-04-07 05:00:32 +02:00
16 lines
241 B
Kotlin
16 lines
241 B
Kotlin
plugins {
|
|
id("java")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |