27 lines
650 B
Plaintext
27 lines
650 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "me.eliasbnr"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url = uri("https://jitpack.io");
|
|
}
|
|
maven("https://jogamp.org/deployment/maven/")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
implementation("org.junit.jupiter:junit-jupiter:5.9.1")
|
|
implementation("org.apache.logging.log4j:log4j-api:2.20.0")
|
|
implementation("org.apache.logging.log4j:log4j-core:2.20.0")
|
|
implementation("com.github.micycle1:processing-core-4:4.2")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |