-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsettings.gradle
More file actions
36 lines (31 loc) · 1.75 KB
/
Copy pathsettings.gradle
File metadata and controls
36 lines (31 loc) · 1.75 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
36
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.10.0'
}
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 '3.4.5'
plugin 'gitversion', 'net.minecraftforge.gitversion' version '3.1.7'
plugin 'changelog', 'net.minecraftforge.changelog' version '3.2.2'
plugin 'versions', 'com.github.ben-manes.versions' version '0.53.0'
plugin 'shadow', 'com.gradleup.shadow' version '9.4.1'
plugin 'jarsigner', 'net.minecraftforge.gradlejarsigner' version '1.2.1'
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' version '1.10.0'
bundle 'junit-runtime', ['junit-engine', 'junit-platform-launcher']
library 'hashutils', 'net.minecraftforge', 'hash-utils' version '0.2.3'
library 'srgutils', 'net.minecraftforge', 'srgutils' version '0.6.6'
library 'jopt-simple', 'net.sf.jopt-simple', 'jopt-simple' version '6.0-alpha-3'
library 'lzma', 'com.github.jponge', 'lzma-java' version '1.3'
library 'xdelta', 'com.nothome', 'javaxdelta' version '2.0.1'
}
//@formatter:on
}
rootProject.name = 'BinaryPatcher'