millgame/build.gradle.kts
2023-06-06 20:51:17 +02:00

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()
}