-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsettings.gradle
57 lines (48 loc) · 2.68 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
55
56
57
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = 'https://maven.minecraftforge.net/' }
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}
dependencyResolutionManagement {
versionCatalogs {
libs {
plugin('license', 'net.minecraftforge.licenser').version('1.0.1')
plugin('gradleutils', 'net.minecraftforge.gradleutils').version('[2.3,2.4)')
plugin('modules', 'org.gradlex.extra-java-module-info').version('1.9')
plugin('versions', 'com.github.ben-manes.versions').version('0.51.0')
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.11.4')
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.11.4')
bundle('junit-runtime', ['junit-engine', 'junit-platform-launcher'])
library('unsafe', 'net.minecraftforge:unsafe:0.9.2')
library('securemodules', 'net.minecraftforge:securemodules:2.2.20') // Needs unsafe
/*
library('gson', 'com.google.code.gson:gson:2.10.1')
library('jopt-simple', 'net.sf.jopt-simple:jopt-simple:5.0.4')
*/
library('forgespi', 'net.minecraftforge:forgespi:7.1.0')
library('modlauncher', 'net.minecraftforge:modlauncher:10.1.1') // Needs securemodules
library('nulls', 'org.jetbrains:annotations:26.0.1')
library('nashorn', 'org.openjdk.nashorn:nashorn-core:15.4') // Needed by coremods, because the JRE no longer ships JS
// Used by our test aggrigator scripts
library('ivy', 'org.apache.ivy:ivy:2.5.3')
library('groovy', 'org.codehaus.groovy:groovy-all:3.0.23')
version('log4j', '2.17.0') // Needs to be kept in step with modlauncher because of its config.. TODO: Figure out why?
library('log4j-api', 'org.apache.logging.log4j', 'log4j-api' ).versionRef('log4j')
library('log4j-core', 'org.apache.logging.log4j', 'log4j-core').versionRef('log4j')
}
}
}
rootProject.name = 'CoreMods'
include 'coremods-test'
include 'coremods-test-jar'