-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsettings.gradle
More file actions
41 lines (35 loc) · 954 Bytes
/
settings.gradle
File metadata and controls
41 lines (35 loc) · 954 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
30
31
32
33
34
35
36
37
38
39
40
41
pluginManagement {
repositories {
maven {
// RetroFuturaGradle
name "GTNH Maven"
url "https://nexus.gtnewhorizons.com/repository/public/"
mavenContent {
includeGroup("com.gtnewhorizons")
includeGroupByRegex("com\\.gtnewhorizons\\..+")
}
}
gradlePluginPortal()
mavenCentral()
mavenLocal()
}
/*
// MappingGenerator start
resolutionStrategy {
eachPlugin {
if(requested.id.toString() == "io.github.legacymoddingmc.mappinggenerator")
useModule("com.github.legacymoddingmc:mappinggenerator:" + requested.version)
}
}
repositories {
maven{
url = "https://jitpack.io"
}
}
// MappingGenerator end
*/
}
plugins {
id 'com.gtnewhorizons.gtnhsettingsconvention' version '2.0.7'
}
rootProject.name = 'ArchaicFix'