-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
settings.gradle
47 lines (40 loc) · 1.78 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
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = 'https://maven.minecraftforge.net/' }
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0'
}
dependencyResolutionManagement {
versionCatalogs {
libs {
// ModLauncher stack
library('modlauncher', 'net.minecraftforge:modlauncher:10.1.1')
library('securemodules', 'net.minecraftforge:securemodules:2.2.2')
library('unsafe', 'net.minecraftforge:unsafe:0.9.2')
// Generics from lambdas
library('typetools', 'net.jodah:typetools:0.6.3')
library('nulls', 'org.jetbrains:annotations:23.0.0')
library('jopt-simple', 'net.sf.jopt-simple:jopt-simple:5.0.4')
library('log4j-api', 'org.apache.logging.log4j:log4j-api:2.17.1')
version('junit', '5.10.1')
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.1')
bundle('junit-runtime', ['junit-engine', 'junit-platform-launcher'])
version('asm', '9.6')
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'])
}
}
}
rootProject.name = 'EventBus'
include 'eventbus-jmh'
include 'eventbus-test'
include 'eventbus-test-jar'
if (file('eventbus-wrapper').exists())
include 'eventbus-wrapper'