-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
34 lines (30 loc) · 895 Bytes
/
settings.gradle.kts
File metadata and controls
34 lines (30 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven("https://maven.fabricmc.net/")
}
}
plugins {
id("dev.kikugie.stonecutter") version "0.8.2"
}
rootProject.name = "ClickVillagers"
include("paper", "mod")
stonecutter {
kotlinController = true
create("mod") {
fun version(version: String, vararg loaders: String) {
loaders.forEach {
this.version("$version-$it", version)
.buildscript = "build.$it.gradle.kts"
}
}
version("1.21.1", "fabric", "neoforge")
version("1.21.4", "fabric", "neoforge")
version("1.21.5", "fabric", "neoforge")
version("1.21.8", "fabric", "neoforge")
version("1.21.10", "fabric", "neoforge")
version("1.21.11", "fabric", "neoforge")
vcsVersion = "1.21.11-fabric"
}
}