-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle
31 lines (28 loc) · 985 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 { url = 'https://maven.minecraftforge.net/' }
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0'
}
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')
bundle('junit-runtime', ['junit-engine', 'junit-platform-launcher'])
*/
library('unsafe', 'net.minecraftforge:unsafe:0.9.2')
library('securemodules', 'net.minecraftforge:securemodules:2.2.6')
}
}
}
rootProject.name = 'Bootstrap'
include 'bs-api'
include 'bs-dev'
include 'bs-shim'