34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "org.mmga"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// https://mvnrepository.com/artifact/io.netty/netty-all
|
|
implementation("io.netty:netty-all:4.1.92.Final")
|
|
// https://mvnrepository.com/artifact/org.projectlombok/lombok
|
|
compileOnly("org.projectlombok:lombok:1.18.26")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.26")
|
|
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
|
|
implementation("org.apache.logging.log4j:log4j-core:2.20.0")
|
|
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api
|
|
implementation("org.apache.logging.log4j:log4j-api:2.20.0")
|
|
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
|
|
implementation("org.slf4j:slf4j-api:2.0.7")
|
|
// https://mvnrepository.com/artifact/org.slf4j/slf4j-reload4j
|
|
implementation("org.slf4j:slf4j-reload4j:2.0.7")
|
|
// https://mvnrepository.com/artifact/org.yaml/snakeyaml
|
|
implementation("org.yaml:snakeyaml:2.0")
|
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |