45 lines
1.1 KiB
Groovy
45 lines
1.1 KiB
Groovy
plugins {
|
|
id("idea")
|
|
id("eclipse")
|
|
id("maven-publish")
|
|
}
|
|
|
|
group = "top.r3944realms.superleadrope"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
apply {
|
|
plugin('java')
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.realityforge.org.jetbrains.annotations:org.jetbrains.annotations:1.7.0'
|
|
implementation 'org.apache.logging.log4j:log4j-core:2.23.1'
|
|
implementation 'org.apache.logging.log4j:log4j-api:2.23.1'
|
|
implementation 'org.apache.logging.log4j:log4j-slf4j2-impl:2.23.1'
|
|
implementation 'org.apache.commons:commons-lang3:3.17.0'
|
|
implementation 'com.google.guava:guava:33.3.0-jre'
|
|
implementation 'io.netty:netty-all:4.1.109.Final'
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
implementation 'org.slf4j:slf4j-api:2.0.16'
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
} |