2021-04-08 12:54:54 +02:00
|
|
|
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
2021-04-15 17:17:49 +02:00
|
|
|
import com.modrinth.minotaur.request.VersionType
|
2021-04-17 14:54:24 +02:00
|
|
|
|
2021-04-14 13:56:20 +02:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
2021-05-02 15:44:44 +02:00
|
|
|
classpath("com.guardsquare:proguard-gradle:[7.1.0-beta3, 7.2[") {
|
2021-04-14 13:56:20 +02:00
|
|
|
exclude("com.android.tools.build")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-08 10:18:46 +02:00
|
|
|
plugins {
|
2021-04-27 01:17:46 +02:00
|
|
|
kotlin("jvm") version "1.5.0"
|
2021-05-26 19:53:09 +02:00
|
|
|
id("com.github.johnrengelman.shadow") version "7.0.0" apply false
|
2021-05-17 15:59:06 +02:00
|
|
|
id("architectury-plugin") version "[3.0.100, 3.3["
|
|
|
|
id("dev.architectury.loom") version "0.7.2.110" apply false
|
2021-04-17 21:06:29 +02:00
|
|
|
id("com.github.ben-manes.versions") version "0.38.0"
|
2021-05-17 15:39:54 +02:00
|
|
|
id("net.kyori.indra.git") version "2.0.4"
|
2021-05-08 17:56:05 +02:00
|
|
|
id("com.modrinth.minotaur") version "1.2.1"
|
2021-04-08 10:18:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "fr.username404"
|
|
|
|
version = "0.0.1"
|
|
|
|
val groupAndName = "${rootProject.group}.${rootProject.name.toLowerCase()}"
|
|
|
|
|
|
|
|
architectury {
|
|
|
|
minecraft = rootProject.property("minecraft") as String
|
|
|
|
}
|
|
|
|
|
2021-04-28 11:33:41 +02:00
|
|
|
val kotlinX: String = "org.jetbrains.kotlinx"
|
2021-04-08 10:18:46 +02:00
|
|
|
subprojects {
|
2021-04-27 18:56:09 +02:00
|
|
|
group = rootProject.group.toString()
|
|
|
|
lateinit var mappingsDep: Dependency
|
2021-05-04 22:07:06 +02:00
|
|
|
apply(plugin = "dev.architectury.loom")
|
2021-05-19 21:55:49 +02:00
|
|
|
extensions.configure<net.fabricmc.loom.LoomGradleExtension>("loom") {
|
|
|
|
mappingsDep = officialMojangMappings()
|
|
|
|
silentMojangMappingsLicense()
|
|
|
|
mixinConfig("snowygui-mixins.json")
|
|
|
|
refmapName = "snowygui-common-refmap.json"
|
|
|
|
}
|
2021-04-08 10:18:46 +02:00
|
|
|
apply(plugin = "com.github.johnrengelman.shadow")
|
2021-04-08 12:57:08 +02:00
|
|
|
val shadowC by configurations.creating
|
2021-05-19 21:55:49 +02:00
|
|
|
repositories { maven(url = "https://jitpack.io"); mavenCentral() }
|
|
|
|
dependencies {
|
|
|
|
implementation("$kotlinX:kotlinx-coroutines-core:1.5.0-RC")
|
|
|
|
listOf(
|
|
|
|
"$kotlinX:kotlinx-datetime:0.2.0",
|
|
|
|
"com.typesafe:config:1.4.1",
|
|
|
|
"io.github.config4k:config4k:0.4.2",
|
|
|
|
"org.jetbrains:annotations:20.1.0"
|
|
|
|
).forEach { implementation(it); shadowC(it) { isTransitive = false; } }
|
|
|
|
"minecraft"("com.mojang:minecraft:${rootProject.property("minecraft")}")
|
|
|
|
"mappings"(mappingsDep)
|
|
|
|
}
|
2021-04-14 13:56:20 +02:00
|
|
|
tasks {
|
2021-05-19 21:55:49 +02:00
|
|
|
apply(plugin = "net.kyori.indra.git")
|
|
|
|
withType(Jar::class) {
|
|
|
|
from("$rootDir/LICENSE.txt")
|
|
|
|
indraGit.applyVcsInformationToManifest(manifest)
|
|
|
|
archiveBaseName.set("${rootProject.name}-${rootProject.version}")
|
|
|
|
}
|
|
|
|
withType(ShadowJar::class) {
|
|
|
|
this.configurations = listOf(shadowC)
|
|
|
|
relocate("kotlinx.datetime", "${rootProject.group}.datetime")
|
|
|
|
relocate("org.jetbrains", "${rootProject.group}.jetbrainslibs")
|
|
|
|
relocate("javassist", "${rootProject.group}.javassist")
|
|
|
|
relocate("org.reflections8", "${rootProject.group}.reflectionlib")
|
|
|
|
relocate("com.typesafe.config", "${rootProject.group}.typesafe.config")
|
|
|
|
relocate("io.github.config4k", "${rootProject.group}.config4k")
|
|
|
|
relocate("net.arikia.dev.drpc", "${rootProject.group}.drpc")
|
|
|
|
exclude("**/*.kotlin_metadata")
|
|
|
|
exclude("**/*.kotlin_builtins")
|
|
|
|
exclude("META-INF/maven/**/*")
|
2021-05-20 13:22:37 +02:00
|
|
|
archiveClassifier.set("shadow-${this@subprojects.name}")
|
2021-05-19 21:55:49 +02:00
|
|
|
}
|
|
|
|
val shadowJar = getByName("shadowJar") as ShadowJar
|
2021-04-27 18:56:09 +02:00
|
|
|
val shrinkJar = register("shrinkJar", proguard.gradle.ProGuardTask::class) { group = this@subprojects.group as String
|
2021-04-14 20:36:05 +02:00
|
|
|
val dictionariesDir = "$rootDir/obfuscation"
|
2021-05-19 21:55:49 +02:00
|
|
|
injars(shadowJar)
|
2021-05-20 13:59:19 +02:00
|
|
|
outjars("$buildDir/shrinkedJar/${shadowJar.outputs.files.singleFile.name}")
|
2021-04-27 18:56:09 +02:00
|
|
|
keep("class $group.snowygui.mixins.* { * ; }")
|
2021-04-28 21:57:49 +02:00
|
|
|
keep("class $group.snowygui.fabric.**")
|
|
|
|
keep("class $group.snowygui.forge.**")
|
2021-04-27 20:40:12 +02:00
|
|
|
keepnames("class $group.snowygui.Snowy")
|
2021-05-20 17:46:28 +02:00
|
|
|
keepnames("class $group.snowygui.gui.feature.Macro { <fields>; }")
|
2021-05-18 22:14:35 +02:00
|
|
|
keep("class $group.snowygui.gui.feature.* { public static *** INSTANCE; }")
|
2021-04-27 18:56:09 +02:00
|
|
|
keepclassmembers("class $group.snowygui.** { public protected <methods>; }")
|
2021-04-17 15:15:15 +02:00
|
|
|
keepattributes("*Annotation*, Signature, InnerClasses, EnclosingMethod, MethodParameters, Synthetic, Exceptions")
|
2021-04-14 20:36:05 +02:00
|
|
|
obfuscationdictionary("$dictionariesDir/dictionary.txt")
|
|
|
|
classobfuscationdictionary("$dictionariesDir/classdictionary.txt")
|
2021-04-17 18:46:40 +02:00
|
|
|
packageobfuscationdictionary("$dictionariesDir/packagesdictionary.txt")
|
2021-04-27 18:56:09 +02:00
|
|
|
flattenpackagehierarchy("$group.snowygui")
|
2021-04-27 20:40:12 +02:00
|
|
|
allowaccessmodification()
|
2021-04-14 18:05:20 +02:00
|
|
|
adaptclassstrings()
|
2021-05-18 22:14:35 +02:00
|
|
|
"$group.**".also { dontnote(it); dontwarn(it) }
|
|
|
|
|
2021-05-20 13:22:37 +02:00
|
|
|
dontwarn("kotlinx.serialization.**")
|
2021-05-18 22:14:35 +02:00
|
|
|
|
2021-05-19 21:55:49 +02:00
|
|
|
doFirst {
|
2021-05-20 13:59:19 +02:00
|
|
|
libraryjars(configurations.compileClasspath.get().filterNot { file ->
|
2021-05-19 21:55:49 +02:00
|
|
|
shadowC.contains(file)
|
|
|
|
})
|
|
|
|
}
|
2021-05-21 12:40:03 +02:00
|
|
|
val homeDir = System.getProperty("java.home") as String
|
2021-04-27 10:15:11 +02:00
|
|
|
if (JavaVersion.current().isJava9Compatible) {
|
2021-05-19 15:56:10 +02:00
|
|
|
val jmodsLocations = setOf(
|
|
|
|
"$homeDir/jmods/java.base.jmod",
|
2021-05-19 19:41:13 +02:00
|
|
|
"$homeDir/jmods/java.desktop.jmod",
|
2021-05-19 15:56:10 +02:00
|
|
|
"$homeDir/jmods/java.instrument.jmod"
|
|
|
|
)
|
|
|
|
if (jmodsLocations.all { !file(it).exists() }) throw GradleException("Jmods appear to be missing, please make sure that jmods are installed.")
|
|
|
|
else jmodsLocations.forEach {
|
|
|
|
libraryjars(it)
|
|
|
|
}
|
2021-04-27 02:34:31 +02:00
|
|
|
} else libraryjars("$homeDir/lib/rt.jar")
|
2021-04-14 13:56:20 +02:00
|
|
|
// Note: dontpreverify() should NOT be used, it will cause errors at runtime
|
2021-04-14 18:05:20 +02:00
|
|
|
useuniqueclassmembernames()
|
|
|
|
optimizationpasses(4)
|
|
|
|
overloadaggressively()
|
2021-04-27 18:39:11 +02:00
|
|
|
mergeinterfacesaggressively()
|
2021-04-14 13:56:20 +02:00
|
|
|
}
|
2021-05-19 21:55:49 +02:00
|
|
|
withType(net.fabricmc.loom.task.RemapJarTask::class) {
|
|
|
|
dependsOn(shrinkJar)
|
|
|
|
val shrinkedJar = shrinkJar.get().outJarFileCollection.singleFile
|
|
|
|
archiveBaseName.set(shadowJar.archiveBaseName)
|
|
|
|
archiveClassifier.set(this@subprojects.name)
|
|
|
|
input.set(shrinkedJar)
|
|
|
|
if (!archiveFileName.get().contains("common")) destinationDirectory.set(file("$rootDir/remappedJars"))
|
|
|
|
}
|
2021-04-08 10:18:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-15 12:49:00 +02:00
|
|
|
val javaVer: String = "8"
|
2021-05-03 14:34:49 +02:00
|
|
|
val kotlinVer = rootProject.property("kotlin_stdlib_version").toString() + ".0"
|
2021-05-03 15:24:25 +02:00
|
|
|
val mcBase: String = rootProject.architectury.minecraft.dropLast(2)
|
2021-04-08 10:18:46 +02:00
|
|
|
allprojects {
|
2021-05-03 14:37:12 +02:00
|
|
|
/** configurations.all {
|
|
|
|
resolutionStrategy {
|
|
|
|
eachDependency {
|
|
|
|
if (requested.group == "org.jetbrains.kotlin" && requested.name.contains("stdlib") && (requested.version != kotlinVer)) {
|
|
|
|
useVersion(kotlinVer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
**/
|
2021-04-08 10:18:46 +02:00
|
|
|
apply(plugin = "java")
|
2021-05-18 22:14:35 +02:00
|
|
|
apply(plugin = "org.jetbrains.kotlin.jvm")
|
2021-04-08 10:18:46 +02:00
|
|
|
apply(plugin = "architectury-plugin")
|
2021-05-15 12:49:00 +02:00
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
}
|
2021-04-20 15:03:40 +02:00
|
|
|
dependencies {
|
2021-05-03 14:34:49 +02:00
|
|
|
implementation(kotlin("stdlib-jdk8", kotlinVer))
|
2021-05-14 23:20:41 +02:00
|
|
|
implementation(kotlin("reflect", kotlinVer))
|
2021-05-15 13:44:21 +02:00
|
|
|
annotationProcessor("com.github.bsideup.jabel:jabel-javac-plugin:0.3.0") {
|
|
|
|
listOf("byte-buddy", "byte-buddy-agent").forEach {
|
|
|
|
exclude(module = it)
|
|
|
|
annotationProcessor("net.bytebuddy:$it:1.10.22")
|
|
|
|
} // Required for Java 16 support
|
|
|
|
}
|
2021-04-20 15:03:40 +02:00
|
|
|
}
|
2021-04-08 10:18:46 +02:00
|
|
|
tasks {
|
|
|
|
withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile::class) {
|
|
|
|
with(kotlinOptions) {
|
2021-04-15 11:06:15 +02:00
|
|
|
freeCompilerArgs = listOf("-Xjvm-default=all", "-Xlambdas=indy")
|
2021-05-15 12:49:00 +02:00
|
|
|
jvmTarget = if (javaVer.toInt() < 10) "1.$javaVer" else javaVer
|
2021-04-08 10:18:46 +02:00
|
|
|
languageVersion = "1.5"
|
2021-05-03 14:03:50 +02:00
|
|
|
apiVersion = rootProject.property("kotlin_stdlib_version").toString()
|
2021-04-08 10:18:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
withType(JavaCompile::class) {
|
|
|
|
with(options) {
|
|
|
|
encoding = "UTF-8"
|
2021-05-15 12:49:00 +02:00
|
|
|
isFork = true
|
|
|
|
// The following lines are required for Jabel:
|
2021-05-15 13:44:21 +02:00
|
|
|
forkOptions.jvmArgs!!.addAll(listOf(
|
|
|
|
"--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED",
|
|
|
|
"--add-opens=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED"
|
|
|
|
)) // Java 16+ support
|
2021-05-15 12:49:00 +02:00
|
|
|
compilerArgs.addAll(listOf("-Xplugin:jabel", "--release", javaVer))
|
2021-04-08 10:18:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
withType(ProcessResources::class) {
|
2021-04-08 17:30:41 +02:00
|
|
|
with(project(":common").sourceSets.main.get().resources.srcDirs) {
|
|
|
|
if (!sourceSets.main.get().resources.srcDirs.containsAll(this)) {
|
|
|
|
from(this)
|
|
|
|
}
|
|
|
|
}
|
2021-04-21 16:31:32 +02:00
|
|
|
val modProperties = mapOf(
|
2021-04-18 17:01:05 +02:00
|
|
|
"mod_version" to (rootProject.version as String),
|
2021-04-27 18:56:09 +02:00
|
|
|
"minecraft_version" to mcBase,
|
2021-05-12 17:10:14 +02:00
|
|
|
"java_version" to javaVer,
|
2021-05-07 10:33:35 +02:00
|
|
|
"mod_group" to this@allprojects.group,
|
|
|
|
"fabric_kotlin" to rootProject.property("fabric_language_kotlin"),
|
|
|
|
"kotlinforforge" to rootProject.property("kotlinforforge")
|
2021-04-18 17:01:05 +02:00
|
|
|
)
|
2021-04-21 16:31:32 +02:00
|
|
|
inputs.properties(modProperties)
|
2021-04-18 17:01:05 +02:00
|
|
|
filesNotMatching(listOf("*.png")) {
|
2021-04-21 16:31:32 +02:00
|
|
|
expand(modProperties)
|
2021-04-08 15:48:07 +02:00
|
|
|
}
|
2021-04-08 10:18:46 +02:00
|
|
|
}
|
2021-04-27 16:41:23 +02:00
|
|
|
check {
|
|
|
|
setDependsOn(
|
|
|
|
dependsOn.minus(test)
|
|
|
|
)
|
|
|
|
}
|
2021-04-08 10:18:46 +02:00
|
|
|
}
|
2021-04-15 17:17:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks {
|
2021-05-19 21:55:49 +02:00
|
|
|
file("remappedJars").let { if (it.exists()) clean.get().delete.add(it) }
|
2021-04-15 17:17:49 +02:00
|
|
|
val publishToModrinth = register<com.modrinth.minotaur.TaskModrinthUpload>("publishtoModrinth") {
|
|
|
|
val envStr: String? = System.getenv("MODRINTH")
|
|
|
|
onlyIf { envStr != null }
|
|
|
|
versionNumber = version.toString()
|
|
|
|
projectId = "OuGyGg6A"
|
|
|
|
token = envStr
|
2021-04-18 17:01:05 +02:00
|
|
|
addGameVersion(mcBase)
|
2021-05-08 21:41:37 +02:00
|
|
|
addDependency("jHsApOJC", com.modrinth.minotaur.request.Dependency.DependencyType.REQUIRED) // Kotlinforforge dependency
|
2021-04-15 17:17:49 +02:00
|
|
|
versionType = VersionType.ALPHA
|
|
|
|
detectLoaders = false
|
|
|
|
versionName = "${project.name} $versionNumber for Minecraft $gameVersions and higher"
|
2021-05-19 21:55:49 +02:00
|
|
|
fileTree("$rootDir/remappedJars/").files.forEach {
|
2021-04-15 21:08:21 +02:00
|
|
|
with(it.name) {
|
|
|
|
when {
|
|
|
|
contains("fabric") -> uploadFile = it
|
|
|
|
contains("forge") -> addFile(it)
|
2021-04-15 17:17:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
addLoader("fabric"); addLoader("forge")
|
|
|
|
}
|
|
|
|
build.get().finalizedBy(publishToModrinth)
|
2021-05-15 01:48:12 +02:00
|
|
|
}
|