LibJF/build.gradle

29 lines
968 B
Groovy
Raw Normal View History

2021-11-29 20:36:43 +01:00
apply from: "https://jfmods.gitlab.io/scripts/jfmod.gradle"
2021-04-11 20:23:52 +02:00
2021-09-27 20:55:48 +02:00
allprojects {
loom {
runs {
testmodClient {
client()
ideConfigGenerated project.rootProject == project
name = "Testmod Client"
source sourceSets.testmod
}
testmodServer {
server()
ideConfigGenerated project.rootProject == project
name = "Testmod Server"
source sourceSets.testmod
}
}
}
2022-05-09 22:53:54 +02:00
2021-09-27 20:55:48 +02:00
dependencies {
2022-07-01 19:43:28 +02:00
modImplementation("com.terraformersmc:modmenu:4.0.0")
modRuntimeOnly("net.fabricmc.fabric-api:fabric-api:$project.fabric_version")
2022-05-18 15:03:38 +02:00
implementation("io.gitlab.jfronny:commons:$project.commons_version")
implementation("io.gitlab.jfronny:commons-gson:$project.commons_version")
implementation("io.gitlab.jfronny:commons-slf4j:$rootProject.commons_version")
2021-09-27 20:55:48 +02:00
}
2021-04-11 20:23:52 +02:00
}