-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
37 lines (34 loc) · 1.23 KB
/
settings.gradle
File metadata and controls
37 lines (34 loc) · 1.23 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
32
33
34
35
36
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/" }
mavenCentral()
mavenLocal()
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url = "https://jitpack.io" }
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url = "https://redempt.dev" }
maven { url = 'https://maven.architectury.dev/' }
maven { url = "https://maven.fabricmc.net/" }
maven { url = 'https://maven.minecraftforge.net/' }
exclusiveContent {
forRepository { maven { url = "https://api.modrinth.com/maven" } }
filter { includeGroup "maven.modrinth" }
}
}
}
rootProject.name = 'Visor'
include 'visor-core','visor-forge','visor-fabric','visor-api'
include 'visor-api:fabric'
findProject(':visor-api:fabric')?.name = 'fabric'
include 'visor-api:forge'
findProject(':visor-api:forge')?.name = 'forge'
include 'visor-core:stubs'
findProject(':visor-core:stubs')?.name = 'stubs'