-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle.kts
137 lines (113 loc) · 3.66 KB
/
build.gradle.kts
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import su.mandora.codechecker.CodeChecker
import java.net.URL
plugins {
id("fabric-loom")
id("org.jetbrains.kotlin.jvm")
base
}
val tarasandeName = "tarasande"
version = property("tarasande_version")!!
group = "su.mandora"
base {
archivesName = tarasandeName
}
loom {
accessWidenerPath = file("src/main/resources/$tarasandeName.accesswidener")
mods {
create(base.archivesName.get()) {
sourceSet(sourceSets.main.get())
}
}
}
val dependency: Configuration by configurations.creating
configurations {
api.get().extendsFrom(dependency)
}
allprojects {
repositories {
maven { url = URL("https://www.jitpack.io").toURI() }
}
}
dependencies {
minecraft("com.mojang:minecraft:${property("minecraft_version")}")
mappings("net.fabricmc:yarn:${property("yarn_mappings")}:v2")
modImplementation("net.fabricmc:fabric-loader:${property("loader_version")}")
dependency("io.netty:netty-handler-proxy:4.1.82.Final") { // Match this version with Minecraft's Netty
exclude("io.netty", "netty-common")
exclude("io.netty", "netty-buffer")
exclude("io.netty", "netty-transport")
exclude("io.netty", "netty-codec")
exclude("io.netty", "netty-transport-native-unix-common")
exclude("io.netty", "netty-resolver")
exclude("io.netty", "netty-handler")
}
modImplementation("net.fabricmc:fabric-language-kotlin:${property("fabric_kotlin_version")}")
fun ExternalModuleDependency.excludeKotlinSTD() {
exclude("org.jetbrains.kotlin")
exclude("org.jetbrains.kotlinx")
}
dependency("com.github.Sumandora:MCSkinLookup:${property("mcskinlookup_commit")}") {
excludeKotlinSTD()
}
dependency("com.github.Sumandora:AuthLib:${property("authlib_commit")}") {
excludeKotlinSTD()
}
}
tasks {
processResources {
inputs.property("version", project.version)
filesMatching("fabric.mod.json") {
expand("version" to project.version)
}
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
dependency.forEach {
from(zipTree(it))
}
from("LICENSE") {
rename { "${it}_$tarasandeName" }
}
}
compileKotlin.get().kotlinOptions.jvmTarget = "17"
compileJava.get().options.release.set(17)
}
java {
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.register("checkCode") {
group = tarasandeName
dependsOn("build")
doLast {
val codeChecker = CodeChecker(sourceSets.main.get())
codeChecker.check()
}
}
tasks.register("installPackages") {
group = tarasandeName
dependsOn("build")
doLast {
val modFolder = File("run", "mods")
if (!modFolder.exists()) modFolder.mkdirs()
subprojects.filter { it.name.startsWith("package") }.forEach { p ->
val packageName = p.name + "-" + p.version + ".jar"
val libs = p.layout.buildDirectory.file("libs").orNull?.asFile ?: run {
println("Failed to acquire buildDirectory for " + p.name)
return@forEach
}
val build = File(libs, packageName)
val modDest = File(modFolder, packageName)
if (build.exists()) {
if (modDest.exists())
if (modDest.delete())
println("Deleted old $packageName")
else
println("Failed to delete old $packageName version")
build.copyTo(modDest)
println("Copied $packageName")
}
}
}
}