21 lines
340 B
Groovy
21 lines
340 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'fr.nabil'
|
||
|
version = '1.0-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
||
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||
|
|
||
|
implementation 'uk.co.electronstudio.jaylib:jaylib:5.0.+'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|