-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
31 lines (29 loc) · 1.13 KB
/
settings.gradle.kts
File metadata and controls
31 lines (29 loc) · 1.13 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
29
30
31
pluginManagement {
repositories {
maven("https://maven.fabricmc.net/")
maven("https://maven.aap.my.id/") // For early access to "unstable" features
maven("https://maven.architectury.dev/")
maven("https://jitpack.io/")
maven("https://files.minecraftforge.net/maven/")
maven("https://repo.essential.gg/repository/maven-public/")
maven("https://maven.neoforged.net/releases")
maven("https://repo.spongepowered.org/maven/")
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "org.spongepowered.gradle.vanilla") {
// REF: https://repo.spongepowered.org/#browse/browse:maven-public:org%2Fspongepowered%2Fvanillagradle%2F0.2.1-SNAPSHOT
useModule("org.spongepowered:vanillagradle:0.2.1-20240507.024226-82")
}
}
}
plugins {
id("com.gradleup.shadow") version "8.3.5"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
}
rootProject.name = "CobbleGen"
include(":mclib")
include(":stubs")
include(":cobblegen") // TODO: Maybe split?