forked from Octol1ttle/FlightAssistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstonecutter.gradle.kts
More file actions
28 lines (25 loc) · 1.14 KB
/
Copy pathstonecutter.gradle.kts
File metadata and controls
28 lines (25 loc) · 1.14 KB
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
plugins {
kotlin("jvm") version "2.2.0" apply false
kotlin("plugin.serialization") version "2.2.0" apply false
id("dev.kikugie.stonecutter")
id("me.modmuss50.mod-publish-plugin") version "0.8.4" apply false
}
stonecutter active "1.20.1-fabric" /* [SC] DO NOT EDIT */
allprojects {
repositories {
fun strictMaven(url: String, vararg groups: String) = exclusiveContent {
forRepository { maven(url) }
filter { groups.forEach(::includeGroup) }
}
mavenLocal()
mavenCentral()
strictMaven("https://jitpack.io", "com.github.Octol1ttle")
strictMaven("https://maven.architectury.dev", "dev.architectury")
strictMaven("https://maven.isxander.dev/releases", "dev.isxander", "org.quiltmc.parsers")
strictMaven("https://thedarkcolour.github.io/KotlinForForge", "thedarkcolour")
strictMaven("https://maven.terraformersmc.com/releases", "com.terraformersmc")
strictMaven("https://maven.enjarai.dev/releases", "nl.enjarai")
maven("https://maven.enjarai.dev/mirrors")
maven("https://oss.sonatype.org/content/repositories/snapshots")
}
}