-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle
More file actions
45 lines (37 loc) · 2.09 KB
/
settings.gradle
File metadata and controls
45 lines (37 loc) · 2.09 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
37
38
39
40
41
42
43
44
45
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
}
rootProject.name = 'slime-launcher'
// Applying plugins causes them to not have any IDE support when also applied to any build.gradle files
// The workaround for now is to use this listener here so that it can stay in settings.gradle
// See: https://youtrack.jetbrains.com/issue/IDEA-332061/Gradle-Missing-Code-Completion-Suggestions-for-Settings-Plugins-in-Groovy-DSL
gradle.beforeProject { Project project ->
project.pluginManager.withPlugin('net.minecraftforge.gradleutils') {
project.repositories {
mavenCentral()
maven project.gradleutils.forgeMaven
//mavenLocal()
}
}
}
//@formatter:off
dependencyResolutionManagement.versionCatalogs.register('libs') {
plugin 'licenser', 'net.minecraftforge.licenser' version '1.2.0'
plugin 'gradleutils', 'net.minecraftforge.gradleutils' version '3.3.21'
plugin 'gitversion', 'net.minecraftforge.gitversion' version '3.1.6'
plugin 'changelog', 'net.minecraftforge.changelog' version '3.1.3'
plugin 'shadow', 'com.gradleup.shadow' version '9.2.2'
plugin 'multirelease', 'net.minecraftforge.multi-release' version '0.1.4'
library 'gson', 'com.google.code.gson', 'gson' version '2.11.0'
library 'jopt', 'net.sf.jopt-simple', 'jopt-simple' version '6.0-alpha-3'
library 'srgutils', 'net.minecraftforge', 'srgutils' version '0.6.5'
library 'srgutils', 'net.minecraftforge', 'srgutils' version '0.6.5'
library 'utils-download', 'net.minecraftforge', 'download-utils' version '0.4.0'
library 'utils-hash', 'net.minecraftforge', 'hash-utils' version '0.2.2'
library 'utils-data', 'net.minecraftforge', 'json-data-utils' version '0.4.7'
library 'utils-logging', 'net.minecraftforge', 'log-utils' version '0.5.0'
bundle 'utils', [ 'utils-download', 'utils-hash', 'utils-data', 'utils-logging' ]
library 'nulls', 'org.jetbrains', 'annotations' version '26.0.2'
}
//@formatter:on
include 'slime-launcher-j9'