mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-27 11:09:06 +00:00
19 lines
288 B
Groovy
19 lines
288 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'com.volmit.iris'
|
|
version '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |