-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathsettings.gradle
More file actions
29 lines (26 loc) · 894 Bytes
/
settings.gradle
File metadata and controls
29 lines (26 loc) · 894 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven{ url "https://oss.sonatype.org/content/repositories/snapshots"}
maven{ url "https://maven.architectury.dev/"}
maven{ url "https://maven.fabricmc.net"}
maven{ url "https://maven.minecraftforge.net/"}
maven{ url "https://repo.spongepowered.org/maven/"}
maven{ url "https://repo.essential.gg/repository/maven-public"}
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "gg.essential.loom") {
useModule("gg.essential:architectury-loom:${requested.version}")
}
}
}
}
plugins {
id "gg.essential.loom" version "1.9.+" apply false
id "dev.architectury.architectury-pack200" version "0.1.3" apply false
}
include 'mod'
include 'loader'
rootProject.name = "Dungeons Guide"