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-12 18:50:14 +02:00
|
|
|
}
|
2022-05-09 22:53:54 +02:00
|
|
|
|
2021-09-27 20:55:48 +02:00
|
|
|
dependencies {
|
2022-06-03 22:45:14 +02:00
|
|
|
modImplementation("com.terraformersmc:modmenu:4.0.0-beta.4")
|
2022-04-02 22:01:29 +02:00
|
|
|
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
|
|
|
}
|