-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
32 lines (29 loc) · 886 Bytes
/
settings.gradle.kts
File metadata and controls
32 lines (29 loc) · 886 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven("https://maven.fabricmc.net/")
maven("https://maven.architectury.dev")
maven("https://maven.minecraftforge.net")
maven("https://maven.neoforged.net/releases/")
maven("https://maven.kikugie.dev/snapshots")
maven("https://maven.kikugie.dev/releases")
maven("https://maven.txni.dev/releases")
}
}
plugins {
id("dev.architectury.loom") version "1.10-SNAPSHOT" apply false
kotlin("jvm") version "2.0.0" apply false
kotlin("plugin.serialization") version "2.0.0" apply false
id("toni.blahaj") version "2.0.17"
id("dev.kikugie.stonecutter") version "0.6-alpha.5"
}
blahaj {
init(rootProject) {
mc("1.20.1", "fabric", "forge")
mc("1.21.1", "fabric", "neoforge")
//mc("1.21.4", "fabric")
//mc("1.21.5", "fabric")
}
}
rootProject.name = settings.extra["mod.name"] as String