34 lines
633 B
Plaintext
34 lines
633 B
Plaintext
plugins {
|
|
id("java")
|
|
application
|
|
}
|
|
|
|
group = "net.xircon"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
val log4jVersion = "2.25.1"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation (platform("org.apache.logging.log4j:log4j-bom:$log4jVersion"))
|
|
implementation("org.apache.logging.log4j:log4j-core:$log4jVersion")
|
|
implementation("org.apache.logging.log4j:log4j-api:$log4jVersion")
|
|
implementation("com.formdev:flatlaf:3.7")
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass = "net.xircon.xenon.client.Xenon"
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |