jni-toolbox/build.gradle

18 lines
292 B
Groovy
Raw Normal View History

2024-09-24 01:58:10 +02:00
plugins {
id 'java-library'
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
systemProperty 'java.library.path','target/debug'
}