forked from CaffeineMC/sodium
-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.gradle
27 lines (27 loc) · 848 Bytes
/
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
pluginManagement {
repositories {
maven {
name 'ObjectWeb'
url 'https://repository.ow2.org/nexus/content/repositories/releases'
content {
includeGroup('org.ow2.asm')
}
}
maven {
name 'Fabric'
url 'https://maven.fabricmc.net'
content {
includeModule('fabric-loom', 'fabric-loom.gradle.plugin')
includeGroup('net.fabricmc.unpick')
includeGroup('net.fabricmc')
}
}
gradlePluginPortal {
content {
includeModule('io.github.juuxel.loom-vineflower', 'io.github.juuxel.loom-vineflower.gradle.plugin')
includeModule('io.github.juuxel', 'loom-vineflower')
}
}
mavenCentral()
}
}