-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle
More file actions
32 lines (27 loc) · 1.67 KB
/
settings.gradle
File metadata and controls
32 lines (27 loc) · 1.67 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
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0' // https://plugins.gradle.org/plugin/org.gradle.toolchains.foojay-resolver-convention
}
rootProject.name = 'gradlejarsigner'
//@formatter:off
dependencyResolutionManagement {
repositories {
//mavenLocal()
mavenCentral()
maven { url = 'https://maven.minecraftforge.net' } // Gradle API
}
versionCatalogs.register('libs') {
plugin 'licenser', 'net.minecraftforge.licenser' version '1.2.0' // https://plugins.gradle.org/plugin/net.minecraftforge.licenser
plugin 'gradleutils', 'net.minecraftforge.gradleutils' version '3.0.0' // https://plugins.gradle.org/plugin/net.minecraftforge.gradleutils
plugin 'gitversion', 'net.minecraftforge.gitversion' version '3.0.0' // https://plugins.gradle.org/plugin/net.minecraftforge.gitversion
plugin 'changelog', 'net.minecraftforge.changelog' version '3.0.0' // https://plugins.gradle.org/plugin/net.minecraftforge.changelog
plugin 'plugin-publish', 'com.gradle.plugin-publish' version '1.3.1' // https://plugins.gradle.org/plugin/com.gradle.plugin-publish
// Static Analysis
library 'nulls', 'org.jetbrains', 'annotations' version '26.0.2'
// Gradle API
// Original: https://github.com/remal-gradle-api/packages/packages/760197?version=7.0.2
// Mirror: https://repos.moddinglegacy.com/#/modding-legacy/name/remal/gradle-api/gradle-api/7.0.2
version 'gradle', '6.6'// We want '4.3' but we need access to ArchiveOperations
library 'gradle', 'name.remal.gradle-api', 'gradle-api' versionRef 'gradle'
}
}
//@formatter:on