-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.gradle
23 lines (21 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
dependencyResolutionManagement {
versionCatalogs {
libs {
version('junit', '5.10.0')
library('junit-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
library('junit-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
library('junit-platform-launcher', 'org.junit.platform:junit-platform-launcher:1.10.0')
library('assert4j', 'org.assertj:assertj-core:3.25.1')
bundle('junit', ['junit-engine', 'junit-platform-launcher', 'junit-api', 'assert4j'])
library('srgutils', 'net.neoforged:srgutils:1.0.0')
library('jopt', 'net.sf.jopt-simple:jopt-simple:5.0.4')
library('lzma', 'com.github.jponge:lzma-java:1.3')
library('xdelta', 'com.nothome:javaxdelta:2.0.1')
library('asm', 'org.ow2.asm:asm:9.7')
}
}
}
include(':cli-utils')
include(':jarsplitter')
include(':binarypatcher')
include(':zipinject')