mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-02-03 16:54:57 +01:00
Gradle grumbles
- Apply java, maven-publish to all projects - Prefer the tasks.named() syntax for configuring tasks - Separate shared configuration for platform projects into a separate configure block - Add more fields to processResources - Make helper methods static - Exclude duplicated package infos
This commit is contained in:
parent
57ac1b08f4
commit
8d4fe7722c
8 changed files with 173 additions and 121 deletions
216
build.gradle
216
build.gradle
|
@ -8,6 +8,12 @@ plugins {
|
||||||
println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}"
|
println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}"
|
||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
|
apply plugin: "dev.architectury.loom"
|
||||||
|
|
||||||
|
base {
|
||||||
|
archivesName = "flywheel-${name}-${artifact_minecraft_version}"
|
||||||
|
}
|
||||||
|
|
||||||
boolean dev = System.getenv('RELEASE') == null || System.getenv('RELEASE').equalsIgnoreCase('false');
|
boolean dev = System.getenv('RELEASE') == null || System.getenv('RELEASE').equalsIgnoreCase('false');
|
||||||
|
|
||||||
ext.buildNumber = System.getenv('BUILD_NUMBER')
|
ext.buildNumber = System.getenv('BUILD_NUMBER')
|
||||||
|
@ -15,63 +21,10 @@ subprojects {
|
||||||
group = 'com.jozufozu.flywheel'
|
group = 'com.jozufozu.flywheel'
|
||||||
version = mod_version + (dev && buildNumber != null ? "-${buildNumber}" : '')
|
version = mod_version + (dev && buildNumber != null ? "-${buildNumber}" : '')
|
||||||
|
|
||||||
apply plugin: "java"
|
|
||||||
apply plugin: "maven-publish"
|
|
||||||
apply plugin: "dev.architectury.loom"
|
|
||||||
|
|
||||||
loom {
|
loom {
|
||||||
silentMojangMappingsLicense()
|
silentMojangMappingsLicense()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (it != project(':common')) {
|
|
||||||
loom {
|
|
||||||
runs {
|
|
||||||
client {
|
|
||||||
ideConfigGenerated true
|
|
||||||
property 'flw.dumpShaderSource', 'true'
|
|
||||||
property 'flw.debugMemorySafety', 'true'
|
|
||||||
programArgs '--width', '1280', '--height', '720'
|
|
||||||
}
|
|
||||||
|
|
||||||
server {
|
|
||||||
ideConfigGenerated true
|
|
||||||
programArgs '--nogui'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks {
|
|
||||||
// make builds reproducible
|
|
||||||
withType(AbstractArchiveTask).configureEach {
|
|
||||||
preserveFileTimestamps = false
|
|
||||||
reproducibleFileOrder = true
|
|
||||||
}
|
|
||||||
|
|
||||||
// module metadata is often broken on multi-platform projects
|
|
||||||
withType(GenerateModuleMetadata).configureEach {
|
|
||||||
enabled = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
processResources.configure {
|
|
||||||
from(project(':common').sourceSets.main.resources)
|
|
||||||
|
|
||||||
var replaceProperties = [
|
|
||||||
minecraft_version : minecraft_version,
|
|
||||||
minecraft_version_range: minecraft_version_range,
|
|
||||||
forge_version : forge_version,
|
|
||||||
forge_version_range : forge_version_range,
|
|
||||||
loader_version_range : loader_version_range,
|
|
||||||
mod_version : mod_version
|
|
||||||
]
|
|
||||||
inputs.properties replaceProperties
|
|
||||||
|
|
||||||
filesMatching(['META-INF/mods.toml', 'META-INF/neoforge.mods.toml', 'pack.mcmeta', 'fabric.mod.json']) {
|
|
||||||
expand replaceProperties + [project: project]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
name = 'ParchmentMC'
|
name = 'ParchmentMC'
|
||||||
|
@ -103,8 +56,43 @@ subprojects {
|
||||||
officialMojangMappings()
|
officialMojangMappings()
|
||||||
parchment("org.parchmentmc.data:parchment-${minecraft_version}:${parchment_version}@zip")
|
parchment("org.parchmentmc.data:parchment-${minecraft_version}:${parchment_version}@zip")
|
||||||
})
|
})
|
||||||
|
|
||||||
|
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
processResources {
|
||||||
|
var replaceProperties = [
|
||||||
|
minecraft_version : minecraft_version,
|
||||||
|
minecraft_version_range: minecraft_version_range,
|
||||||
|
forge_version : forge_version,
|
||||||
|
forge_version_range : forge_version_range,
|
||||||
|
loader_version_range : loader_version_range,
|
||||||
|
mod_version : mod_version,
|
||||||
|
mod_id : mod_id,
|
||||||
|
mod_name : mod_name,
|
||||||
|
mod_description : mod_description,
|
||||||
|
mod_license : mod_license,
|
||||||
|
mod_sources : mod_sources,
|
||||||
|
mod_issues : mod_issues,
|
||||||
|
mod_homepage : mod_homepage,
|
||||||
|
]
|
||||||
|
inputs.properties replaceProperties
|
||||||
|
|
||||||
|
filesMatching(['pack.mcmeta', 'fabric.mod.json', 'META-INF/mods.toml', 'META-INF/neoforge.mods.toml']) {
|
||||||
|
expand replaceProperties + [project: project]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: rootProject.file('gradle/package-infos.gradle')
|
||||||
|
|
||||||
|
ideaSyncTask.finalizedBy(generatePackageInfos)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Need to setup the java plugin for all projects so that our subprojects can find an output directory
|
||||||
|
allprojects {
|
||||||
|
apply plugin: "java"
|
||||||
|
apply plugin: "maven-publish"
|
||||||
|
|
||||||
java {
|
java {
|
||||||
JavaVersion javaVersion = JavaVersion.toVersion(java_version)
|
JavaVersion javaVersion = JavaVersion.toVersion(java_version)
|
||||||
sourceCompatibility = javaVersion
|
sourceCompatibility = javaVersion
|
||||||
|
@ -116,46 +104,105 @@ subprojects {
|
||||||
withJavadocJar()
|
withJavadocJar()
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(JavaCompile).configureEach {
|
// make builds reproducible
|
||||||
source(project(':common').sourceSets.main.allSource)
|
tasks.withType(AbstractArchiveTask).configureEach {
|
||||||
|
preserveFileTimestamps = false
|
||||||
options.encoding = 'UTF-8'
|
reproducibleFileOrder = true
|
||||||
options.release = Integer.parseInt(java_version)
|
|
||||||
options.compilerArgs = ['-Xdiags:verbose']
|
|
||||||
}
|
}
|
||||||
|
|
||||||
jar.configure {
|
// module metadata is often broken on multi-platform projects
|
||||||
|
tasks.withType(GenerateModuleMetadata).configureEach {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType(JavaCompile).configureEach { JavaCompile javaCompile ->
|
||||||
|
javaCompile.options.encoding = 'UTF-8'
|
||||||
|
javaCompile.options.release = Integer.parseInt(java_version)
|
||||||
|
javaCompile.options.compilerArgs = ['-Xdiags:verbose']
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.named('jar', Jar).configure { Jar jar ->
|
||||||
archiveClassifier = ''
|
archiveClassifier = ''
|
||||||
addManifest(it)
|
addManifest(jar)
|
||||||
addLicense(it)
|
addLicense(jar)
|
||||||
}
|
}
|
||||||
|
|
||||||
sourcesJar.configure {
|
tasks.named('sourcesJar', Jar).configure { Jar jar ->
|
||||||
from(project(':common').sourceSets.main.allSource)
|
addManifest(jar)
|
||||||
|
addLicense(jar)
|
||||||
addManifest(it)
|
|
||||||
addLicense(it)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
javadoc.configure {
|
tasks.named('javadoc', Javadoc).configure { Javadoc javadoc ->
|
||||||
source(project(':common').sourceSets.main.allJava)
|
javadoc.source sourceSets.main.allJava
|
||||||
|
|
||||||
// prevent java 8's strict doclint for javadocs from failing builds
|
// prevent java 8's strict doclint for javadocs from failing builds
|
||||||
options.addStringOption('Xdoclint:none', '-quiet')
|
javadoc.options.addStringOption('Xdoclint:none', '-quiet')
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: rootProject.file('gradle/package-infos.gradle')
|
|
||||||
|
|
||||||
ideaSyncTask.finalizedBy(generatePackageInfos)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void addLicense(jarTask) {
|
// Common configuration for platform dependent subprojects.
|
||||||
|
for (final def subprojectName in [":fabric", ":forge"]) {
|
||||||
|
project(subprojectName) {
|
||||||
|
evaluationDependsOn(':common')
|
||||||
|
|
||||||
|
loom {
|
||||||
|
runs {
|
||||||
|
client {
|
||||||
|
ideConfigGenerated true
|
||||||
|
// Turn on our own debug flags
|
||||||
|
property 'flw.dumpShaderSource', 'true'
|
||||||
|
property 'flw.debugMemorySafety', 'true'
|
||||||
|
|
||||||
|
// Turn on mixin debug flags
|
||||||
|
property 'mixin.debug.export', 'true'
|
||||||
|
property 'mixin.debug.verbose', 'true'
|
||||||
|
|
||||||
|
// 720p baby!
|
||||||
|
programArgs '--width', '1280', '--height', '720'
|
||||||
|
}
|
||||||
|
|
||||||
|
// We're a client mod, but we need to make sure we correctly render when playing on a server.
|
||||||
|
server {
|
||||||
|
ideConfigGenerated true
|
||||||
|
programArgs '--nogui'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.named('processResources', ProcessResources).configure { ProcessResources processResources ->
|
||||||
|
processResources.from project(':common').tasks.named('processResources', ProcessResources).get().source
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.named('compileJava', JavaCompile).configure { JavaCompile compileJava ->
|
||||||
|
compileJava.source project(':common').tasks.named('compileJava', JavaCompile).get().source
|
||||||
|
excludeDuplicatePackageInfos(compileJava)
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.named('javadoc', Javadoc).configure { Javadoc javadoc ->
|
||||||
|
javadoc.source project(':common').tasks.named('javadoc', Javadoc).get().source
|
||||||
|
excludeDuplicatePackageInfos(javadoc)
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.named('jar', Jar).configure { Jar jar ->
|
||||||
|
excludeDuplicatePackageInfos(jar)
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.named('sourcesJar', Jar).configure { Jar jar ->
|
||||||
|
def commonSources = project(":common").tasks.named('sourcesJar', Jar)
|
||||||
|
dependsOn commonSources
|
||||||
|
jar.from zipTree(commonSources.flatMap { it.archiveFile })
|
||||||
|
|
||||||
|
excludeDuplicatePackageInfos(jar)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void addLicense(Jar jarTask) {
|
||||||
jarTask.from('LICENSE.md') {
|
jarTask.from('LICENSE.md') {
|
||||||
rename '(.*)\\.(.*)', '$1_' + jarTask.archiveBaseName + '.$2'
|
rename '(.*)\\.(.*)', '$1_' + jarTask.archiveBaseName + '.$2'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void addManifest(jarTask) {
|
static void addManifest(Jar jarTask) {
|
||||||
jarTask.manifest {
|
jarTask.manifest {
|
||||||
attributes([
|
attributes([
|
||||||
'Specification-Title' : 'flywheel',
|
'Specification-Title' : 'flywheel',
|
||||||
|
@ -169,6 +216,21 @@ void addManifest(jarTask) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We have duplicate packages between the common and platform dependent subprojects.
|
||||||
|
// In theory the package-info.java files should be identical, so just take the first one we find.
|
||||||
|
static void excludeDuplicatePackageInfos(AbstractCopyTask copyTask) {
|
||||||
|
copyTask.filesMatching('**/package-info.java') {
|
||||||
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// The compile/javadoc tasks have a different base type that isn't so smart about exclusion handling.
|
||||||
|
static void excludeDuplicatePackageInfos(SourceTask sourceTask) {
|
||||||
|
// FIXME: actually scan the files and exclude the duplicates
|
||||||
|
// may be tough because the files have absolute paths
|
||||||
|
sourceTask.exclude('**/package-info.java')
|
||||||
|
}
|
||||||
|
|
||||||
idea {
|
idea {
|
||||||
// Tell IDEA to always download sources/javadoc artifacts from maven.
|
// Tell IDEA to always download sources/javadoc artifacts from maven.
|
||||||
module {
|
module {
|
||||||
|
|
|
@ -1,12 +1,6 @@
|
||||||
base {
|
|
||||||
archivesName = "flywheel-${project.name}-${artifact_minecraft_version}"
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
modCompileOnly "net.fabricmc:fabric-loader:$fabric_loader_version"
|
modCompileOnly "net.fabricmc:fabric-loader:$fabric_loader_version"
|
||||||
|
|
||||||
compileOnly "com.google.code.findbugs:jsr305:3.0.2"
|
|
||||||
|
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"pack": {
|
"pack": {
|
||||||
"description": "Flywheel resources",
|
"description": "${mod_name} resources",
|
||||||
"pack_format": 15
|
"pack_format": 15
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
evaluationDependsOn(':common')
|
|
||||||
|
|
||||||
base {
|
|
||||||
archivesName = "flywheel-${project.name}-${artifact_minecraft_version}"
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
modCompileOnly "net.fabricmc:fabric-loader:$fabric_loader_version"
|
modCompileOnly "net.fabricmc:fabric-loader:$fabric_loader_version"
|
||||||
modLocalRuntime "net.fabricmc:fabric-loader:$fabric_loader_version"
|
modLocalRuntime "net.fabricmc:fabric-loader:$fabric_loader_version"
|
||||||
|
@ -18,8 +12,6 @@ dependencies {
|
||||||
|
|
||||||
modCompileOnly "maven.modrinth:sodium:$sodium_version"
|
modCompileOnly "maven.modrinth:sodium:$sodium_version"
|
||||||
modCompileOnly "maven.modrinth:iris:$iris_version"
|
modCompileOnly "maven.modrinth:iris:$iris_version"
|
||||||
|
|
||||||
compileOnly "com.google.code.findbugs:jsr305:3.0.2"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
|
|
|
@ -1,19 +1,20 @@
|
||||||
{
|
{
|
||||||
"schemaVersion": 1,
|
"schemaVersion": 1,
|
||||||
"id": "flywheel",
|
"id": "${mod_id}",
|
||||||
"version": "${version}",
|
"version": "${mod_version}",
|
||||||
"name": "Flywheel",
|
"name": "${mod_name}",
|
||||||
"description": "A modern engine for modded minecraft.",
|
"description": "${mod_description}",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Jozufozu",
|
"Jozufozu",
|
||||||
"PepperCode1"
|
"PepperCode1"
|
||||||
],
|
],
|
||||||
"contact": {
|
"contact": {
|
||||||
"homepage": "https://fabricmc.net/",
|
"homepage": "${mod_homepage}",
|
||||||
"sources": "https://github.com/FabricMC/fabric-example-mod"
|
"sources": "${mod_sources}",
|
||||||
|
"issues": "${mod_issues}"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "${mod_license}",
|
||||||
"icon": "assets/flywheel/logo.png",
|
"icon": "logo.png",
|
||||||
"environment": "*",
|
"environment": "*",
|
||||||
"entrypoints": {
|
"entrypoints": {
|
||||||
"client": [
|
"client": [
|
||||||
|
@ -27,6 +28,6 @@
|
||||||
],
|
],
|
||||||
"depends": {
|
"depends": {
|
||||||
"fabric": "*",
|
"fabric": "*",
|
||||||
"minecraft": ">=1.20.1"
|
"minecraft": "${minecraft_version_range}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,4 @@
|
||||||
evaluationDependsOn(':common')
|
// Add some forge specific configurations
|
||||||
|
|
||||||
base {
|
|
||||||
archivesName = "flywheel-${project.name}-${artifact_minecraft_version}"
|
|
||||||
}
|
|
||||||
|
|
||||||
loom {
|
loom {
|
||||||
forge {
|
forge {
|
||||||
mixinConfig "flywheel.backend.mixins.json"
|
mixinConfig "flywheel.backend.mixins.json"
|
||||||
|
@ -26,8 +21,6 @@ dependencies {
|
||||||
|
|
||||||
modCompileOnly "maven.modrinth:embeddium:$embeddium_version"
|
modCompileOnly "maven.modrinth:embeddium:$embeddium_version"
|
||||||
modCompileOnly "maven.modrinth:oculus:$oculus_version"
|
modCompileOnly "maven.modrinth:oculus:$oculus_version"
|
||||||
|
|
||||||
compileOnly "com.google.code.findbugs:jsr305:3.0.2"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
|
|
|
@ -1,33 +1,32 @@
|
||||||
modLoader = "javafml"
|
modLoader = "javafml"
|
||||||
loaderVersion = "${loader_version_range}"
|
loaderVersion = "${loader_version_range}"
|
||||||
issueTrackerURL = "https://github.com/Jozufozu/Flywheel/issues"
|
issueTrackerURL = "${mod_issues}"
|
||||||
license = "MIT"
|
license = "${mod_license}"
|
||||||
|
|
||||||
[[mods]]
|
[[mods]]
|
||||||
modId = "flywheel"
|
modId = "${mod_id}"
|
||||||
version = "${mod_version}"
|
version = "${mod_version}"
|
||||||
displayName = "Flywheel"
|
displayName = "${mod_name}"
|
||||||
logoFile = "logo.png"
|
logoFile = "logo.png"
|
||||||
displayURL = "https://github.com/Jozufozu/Flywheel"
|
displayURL = "${mod_homepage}"
|
||||||
authors = "Jozufozu, PepperCode1"
|
authors = "Jozufozu, PepperCode1"
|
||||||
description = '''
|
description = "${mod_description}"
|
||||||
A modern engine for modded minecraft.'''
|
|
||||||
|
|
||||||
[[dependencies.flywheel]]
|
[[dependencies.${mod_id}]]
|
||||||
modId = "forge"
|
modId = "forge"
|
||||||
mandatory = true
|
mandatory = true
|
||||||
versionRange = "${forge_version_range}"
|
versionRange = "${forge_version_range}"
|
||||||
ordering = "NONE"
|
ordering = "NONE"
|
||||||
side = "CLIENT"
|
side = "CLIENT"
|
||||||
|
|
||||||
[[dependencies.flywheel]]
|
[[dependencies.${mod_id}]]
|
||||||
modId = "minecraft"
|
modId = "minecraft"
|
||||||
mandatory = true
|
mandatory = true
|
||||||
versionRange = "${minecraft_version_range}"
|
versionRange = "${minecraft_version_range}"
|
||||||
ordering = "NONE"
|
ordering = "NONE"
|
||||||
side = "CLIENT"
|
side = "CLIENT"
|
||||||
|
|
||||||
[[dependencies.flywheel]]
|
[[dependencies.${mod_id}]]
|
||||||
modId = "rubidium"
|
modId = "rubidium"
|
||||||
# This replicates a "breaks" dependency.
|
# This replicates a "breaks" dependency.
|
||||||
# There's a mixin crash with Rubidium <0.7.0.
|
# There's a mixin crash with Rubidium <0.7.0.
|
||||||
|
|
|
@ -1,19 +1,30 @@
|
||||||
org.gradle.jvmargs = -Xmx3G
|
org.gradle.jvmargs = -Xmx3G
|
||||||
org.gradle.daemon = false
|
org.gradle.daemon = false
|
||||||
|
|
||||||
# mod version info
|
# General mod metadata
|
||||||
|
mod_id = flywheel
|
||||||
|
mod_name = Flywheel
|
||||||
|
mod_license = MIT
|
||||||
|
mod_description = An overhauled entity and block entity rendering API.
|
||||||
|
|
||||||
|
mod_sources = https://github.com/Jozufozu/Flywheel
|
||||||
|
mod_issues = https://github.com/Jozufozu/Flywheel/issues
|
||||||
|
mod_homepage = https://github.com/Jozufozu/Flywheel
|
||||||
|
|
||||||
|
# Mod version info
|
||||||
mod_version = 1.0.0-alpha
|
mod_version = 1.0.0-alpha
|
||||||
artifact_minecraft_version = 1.20.1
|
artifact_minecraft_version = 1.20.1
|
||||||
minecraft_version = 1.20.1
|
minecraft_version = 1.20.1
|
||||||
forge_version = 47.2.19
|
forge_version = 47.2.19
|
||||||
fabric_loader_version = 0.15.9
|
fabric_loader_version = 0.15.9
|
||||||
fabric_api_version = 0.92.1+1.20.1
|
fabric_api_version = 0.92.1+1.20.1
|
||||||
|
|
||||||
# Version ranges for the mods.toml
|
# Version ranges for the mods.toml
|
||||||
minecraft_version_range = [1.20.1,1.20.2)
|
minecraft_version_range = [1.20.1,1.20.2)
|
||||||
forge_version_range = [47,)
|
forge_version_range = [47,)
|
||||||
loader_version_range = [47,)
|
loader_version_range = [47,)
|
||||||
|
|
||||||
# build dependency versions
|
# Build dependency versions
|
||||||
java_version = 17
|
java_version = 17
|
||||||
arch_loom_version = 1.6-SNAPSHOT
|
arch_loom_version = 1.6-SNAPSHOT
|
||||||
forgegradle_version = [6.0.16,6.2)
|
forgegradle_version = [6.0.16,6.2)
|
||||||
|
|
Loading…
Reference in a new issue