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
138
139
140
141
142
143
144
145
146
147
148
149
|
import java.io.ByteArrayOutputStream
import net.minecraftforge.gradle.user.ReobfMappingType
plugins {
java
id("net.minecraftforge.gradle.forge") version "6f5327738df"
id("com.github.johnrengelman.shadow") version "6.1.0"
id("org.spongepowered.mixin") version "d75e32e"
}
group = "io.github.moulberry"
val baseVersion = "2.1"
var buildVersion = properties["BUILD_VERSION"]
if (buildVersion == null) {
val stdout = ByteArrayOutputStream()
val execResult = exec {
commandLine("git", "describe", "--always", "--first-parent", "--abbrev=7")
standardOutput = stdout
}
if (execResult.exitValue == 0)
buildVersion = String(stdout.toByteArray()).trim()
}
version = baseVersion + (buildVersion?.let { "+$it" } ?: "")
// Toolchains:
java {
// Forge Gradle currently prevents using the toolchain: toolchain.languageVersion.set(JavaLanguageVersion.of(8))
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
minecraft {
version = "1.8.9-11.15.1.2318-1.8.9"
runDir = "run"
mappings = "stable_22"
clientJvmArgs.addAll(
listOf(
"-Dmixin.debug=true",
"-Dasmhelper.verbose=true"
)
)
clientRunArgs.addAll(
listOf(
"--tweakClass org.spongepowered.asm.launch.MixinTweaker",
"--mixin mixins.notenoughupdates.json"
)
)
}
mixin {
add(sourceSets.main.get(), "mixins.notenoughupdates.refmap.json")
}
// Dependencies:
repositories {
mavenCentral()
flatDir { dirs("deps/") }
maven("https://repo.spongepowered.org/maven/")
}
dependencies {
implementation("org.spongepowered:mixin:0.7.11-SNAPSHOT")
annotationProcessor("org.spongepowered:mixin:0.7.11-SNAPSHOT")
implementation("com.fasterxml.jackson.core:jackson-core:2.13.1")
implementation("info.bliki.wiki:bliki-core:3.1.0")
}
// Tasks:
tasks.withType(JavaCompile::class) {
options.encoding = "UTF-8"
}
tasks.withType(Jar::class) {
archiveBaseName.set("NotEnoughUpdates")
manifest.attributes.run {
this["Main-Class"] = "NotSkyblockAddonsInstallerFrame"
this["TweakClass"] = "org.spongepowered.asm.launch.MixinTweaker"
this["MixinConfigs"] = "mixins.notenoughupdates.json"
this["FMLCorePluginContainsFMLMod"] = "true"
this["ForceLoadAsMod"] = "true"
this["FMLAT"] = "notenoughupdates_at.cfg"
}
}
tasks.shadowJar {
archiveClassifier.set("dep")
exclude(
"module-info.class",
"LICENSE.txt"
)
dependencies {
include(dependency("org.spongepowered:mixin:0.7.11-SNAPSHOT"))
include(dependency("commons-io:commons-io"))
include(dependency("org.apache.commons:commons-lang3"))
include(dependency("com.fasterxml.jackson.core:jackson-databind:2.10.2"))
include(dependency("com.fasterxml.jackson.core:jackson-annotations:2.10.2"))
include(dependency("com.fasterxml.jackson.core:jackson-core:2.10.2"))
include(dependency("info.bliki.wiki:bliki-core:3.1.0"))
include(dependency("org.slf4j:slf4j-api:1.7.18"))
include(dependency("org.luaj:luaj-jse:3.0.1"))
}
fun relocate(name: String) = relocate(name, "io.github.moulberry.notenoughupdates.deps.$name")
relocate("com.fasterxml.jackson")
relocate("org.eclipse")
relocate("org.slf4j")
}
tasks.build.get().dependsOn(tasks.shadowJar)
reobf {
create("shadowJar") {
mappingType = ReobfMappingType.SEARGE
}
}
tasks.processResources {
from(sourceSets.main.get().resources.srcDirs)
filesMatching("mcmod.info") {
expand(
"version" to project.version,
"mcversion" to minecraft.version
)
}
rename("(.+_at.cfg)".toPattern(), "META-INF/$1")
}
val moveResources by tasks.creating {
doLast {
ant.withGroovyBuilder {
"move"(
"file" to "$buildDir/resources/main",
"todir" to "$buildDir/classes/java"
)
}
}
dependsOn(tasks.processResources)
}
tasks.classes { dependsOn(moveResources) }
|