forked from StannisMod/AdvancedRocketry
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
28 lines (26 loc) · 748 Bytes
/
settings.gradle.kts
File metadata and controls
28 lines (26 loc) · 748 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven {
name = "MinecraftForge"
url = uri("https://maven.minecraftforge.net/")
}
maven {
name = "FancyGradle"
url = uri("https://maven.gofancy.wtf/releases")
}
maven { url = uri("https://plugins.gradle.org/m2/") }
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
}
rootProject.name = "AdvancedRocketry"
if(file("libVulpes").exists()) {
includeBuild("libVulpes") {
dependencySubstitution {
substitute(module("zmaster587.libVulpes:LibVulpes")).using(project(":"))
}
}
}