-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle
54 lines (45 loc) · 2.38 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
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = 'https://maven.minecraftforge.net/' }
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}
dependencyResolutionManagement {
versionCatalogs {
libs {
version('asm', '9.7.1')
library('asm', 'org.ow2.asm', 'asm' ).versionRef('asm')
library('asm-tree', 'org.ow2.asm', 'asm-tree' ).versionRef('asm')
library('asm-commons', 'org.ow2.asm', 'asm-commons').versionRef('asm')
bundle('asm', ['asm', 'asm-tree', 'asm-commons'])
version('junit', '5.10.2')
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.2')
bundle('junit-runtime', ['junit-engine', 'junit-platform-launcher']) // Force Gradle to load the JUnit Platform Launcher from the module-path
library('nulls', 'org.jetbrains:annotations:24.1.0')
library('unsafe', 'net.minecraftforge:unsafe:0.9.2')
library('securemodules', 'net.minecraftforge:securemodules:2.2.14')
library('jopt-simple', 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3')
library('bootstrap-api', 'net.minecraftforge:bootstrap-api:2.0.0')
version('log4j', '2.22.1')
library('log4j-api', 'org.apache.logging.log4j', 'log4j-api' ).versionRef('log4j')
library('log4j-core', 'org.apache.logging.log4j', 'log4j-core').versionRef('log4j')
bundle('log4j-runtime', ['log4j-api', 'log4j-core'])
version('powermock', '2.0.9')
library('powermock-core', 'org.powermock', 'powermock-core').versionRef('powermock')
library('powermock-reflect', 'org.powermock', 'powermock-reflect').versionRef('powermock')
bundle('powermock', ['powermock-core', 'powermock-reflect'])
version('jmh', '1.37')
library('jmh-core', 'org.openjdk.jmh', 'jmh-core').versionRef('jmh')
library('jmh-ap', 'org.openjdk.jmh', 'jmh-generator-annprocess').versionRef('jmh')
}
}
}
rootProject.name = "ModLauncher"
include 'ml-jmh'
include 'ml-test'
include 'ml-test-jar'