-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsettings.gradle
31 lines (27 loc) · 991 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
28
29
30
31
pluginManagement {
repositories {
gradlePluginPortal()
maven {
name = 'MinecraftForge'
url = 'https://maven.minecraftforge.net/'
}
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0'
}
dependencyResolutionManagement {
versionCatalogs {
libs {
library('jopt-simple', 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3')
library('srgutils', 'net.minecraftforge:srgutils:0.5.10')
version('asm', '9.7')
library('asm', 'org.ow2.asm', 'asm' ).versionRef('asm')
library('asm-commons', 'org.ow2.asm', 'asm-commons').versionRef('asm')
library('asm-tree', 'org.ow2.asm', 'asm-tree' ).versionRef('asm')
library('asm-util', 'org.ow2.asm', 'asm-util' ).versionRef('asm')
bundle('asm', ['asm', 'asm-commons', 'asm-tree', 'asm-util'])
}
}
}
rootProject.name = 'MergeTool'