-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
26 lines (23 loc) · 981 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
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = 'https://nexus.c0d3m4513r.com/repository/Ketting/' }
maven { url = 'https://nexus.c0d3m4513r.com/repository/Magma/' }
mavenCentral()
}
}
dependencyResolutionManagement {
versionCatalogs {
libs {
version('asm', '9.7')
library('asm', 'org.ow2.asm', 'asm' ).versionRef('asm')
library('asm-tree', 'org.ow2.asm', 'asm-tree' ).versionRef('asm')
library('asm-util', 'org.ow2.asm', 'asm-util' ).versionRef('asm')
library('asm-commons', 'org.ow2.asm', 'asm-commons' ).versionRef('asm')
library('asm-analysis', 'org.ow2.asm', 'asm-analysis').versionRef('asm')
bundle('asm', ['asm', 'asm-tree', 'asm-util', 'asm-commons', 'asm-analysis'])
library('mixin', 'org.spongepowered:mixin:0.8.5')
}
}
}
rootProject.name = "MixinExtras"