-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
settings.gradle
63 lines (59 loc) · 1.58 KB
/
settings.gradle
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven {
name = 'NeoForged'
url = 'https://maven.neoforged.net/'
}
maven {
name = "Luke's Maven"
url = 'https://maven.lukebemish.dev/releases/'
}
maven {
name = 'ParchmentMC'
url = 'https://maven.parchmentmc.org'
}
maven {
name = 'Architectury'
url "https://maven.architectury.dev/"
}
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id 'dev.lukebemish.conventions' version '0.1.9'
id 'dev.lukebemish.multisource' version '0.1.8'
}
rootProject.name = 'excavatedvariants'
multisource.of(':') {
configureEach {
minecraft.add project.libs.minecraft
mappings.add loom.layered() {
officialMojangMappings()
parchment(project.dependencies.variantOf(project.libs.parchment) {
artifactType('zip')
})
}
}
common('main', []) {}
fabric('fabric', ['main']) {}
neoforge('neoforge', ['main']) {
neoForge.add project.libs.neoforge
}
repositories {
// Forge repo doesn't mirror central right...
it.removeIf { it.name == 'Forge' }
maven {
name = 'ParchmentMC'
url = 'https://maven.parchmentmc.org'
}
maven {
name = 'Quilt (Release)'
url = 'https://maven.quiltmc.org/repository/release'
}
}
}