-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstonecutter.gradle.kts
More file actions
34 lines (29 loc) · 978 Bytes
/
Copy pathstonecutter.gradle.kts
File metadata and controls
34 lines (29 loc) · 978 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
plugins {
id("dev.kikugie.stonecutter")
alias(libs.plugins.mod.publish)
id("fabric-loom") version "1.15-SNAPSHOT" apply false
}
stonecutter active "1.21.4-fabric"
tasks.register("Build active project") {
group = "stonecutter"
dependsOn(":${stonecutter.current?.project}:build")
}
tasks.register("Run active project") {
group = "stonecutter"
dependsOn(":${stonecutter.current?.project}:runClient")
}
allprojects {
repositories {
mavenCentral()
mavenLocal()
maven("https://api.modrinth.com/maven")
maven("https://maven.fabricmc.net/")
maven("https://maven.firstdark.dev/snapshots")
maven("https://maven.isxander.dev/releases/")
maven("https://maven.neoforged.net/releases")
maven("https://maven.nucleoid.xyz/")
maven("https://maven.quiltmc.org/repository/release/")
maven("https://maven.terraformersmc.com/releases/")
maven("https://thedarkcolour.github.io/KotlinForForge/")
}
}