-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsettings.gradle
More file actions
35 lines (29 loc) · 1.36 KB
/
settings.gradle
File metadata and controls
35 lines (29 loc) · 1.36 KB
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
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.10.0'
}
rootProject.name = 'SrgUtils'
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url = 'https://maven.minecraftforge.net/' }
}
//@formatter:off
versionCatalogs.register('libs') {
plugin 'licenser', 'net.minecraftforge.licenser' version '1.2.0'
plugin 'gradleutils', 'net.minecraftforge.gradleutils' version '2.6.0'
plugin 'versions', 'com.github.ben-manes.versions' version '0.52.0'
//region Static Analysis
library 'nulls', 'org.jetbrains', 'annotations' version '26.0.2'
library 'jsr305', 'com.google.code.findbugs', 'jsr305' version '3.0.2'
//endregion
//region Testing
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' version '1.10.2'
bundle 'junit-runtime', ['junit-engine', 'junit-platform-launcher']
library 'powermock', 'org.powermock', 'powermock-core' version '2.0.9'
//endregion
}
//@formatter:on
}