-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
23 lines (22 loc) · 772 Bytes
/
settings.gradle
File metadata and controls
23 lines (22 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = "https://maven.fabricmc.net/" }
maven { url = "https://maven.architectury.dev/" }
maven { url = "https://maven.minecraftforge.net/" }
maven { url = "https://maven.neoforged.net/" }
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url = "https://jitpack.io" }
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
exclusiveContent {
forRepository { maven { url = "https://api.modrinth.com/maven" } }
filter { includeGroup "maven.modrinth" }
}
}
}
rootProject.name = 'VisorAddonMultiplatform'
include 'mod-core','mod-forge','mod-fabric'