DG_LAB/build.gradle
3944Realms 4b15d70e06 refactor: 重构开发环境
BREAKING CHANGE: 由com.r3944realms.dg_lab_api -> com.r3944realms.dg_lab.api
2025-09-13 10:57:55 +08:00

35 lines
571 B
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 {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}
}