forked from JayemCeekay/ArdaGrass
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
28 lines (24 loc) · 721 Bytes
/
settings.gradle.kts
File metadata and controls
28 lines (24 loc) · 721 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven("https://maven.fabricmc.net")
maven("https://maven.kikugie.dev/snapshots")
}
}
plugins {
id("dev.kikugie.stonecutter") version "0.8.3"
}
stonecutter {
create(rootProject) {
fun register(vararg versions: String) = versions
.forEach {
if (stonecutter.eval(it, ">1.21.11"))
version(it).buildscript = "build_noremap.gradle.kts"
else version(it).buildscript = "build.gradle.kts"
}
register("1.21.1", "1.21.10", "1.21.11", "26.1.2")
vcsVersion = "26.1.2"
}
}
rootProject.name = "BetterGrassify"