forked from TerraFirmaCraft/TerraFirmaCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
241 lines (202 loc) · 7.63 KB
/
build.gradle
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
import groovy.json.JsonOutput
import groovy.json.JsonSlurper
buildscript {
repositories {
maven { url = 'https://maven.minecraftforge.net' }
maven { url = 'https://maven.parchmentmc.org' }
maven {
url "https://repo.spongepowered.org/repository/maven-public/"
content { includeGroup "org.spongepowered" }
}
mavenCentral()
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
classpath 'org.spongepowered:mixingradle:0.7-SNAPSHOT'
classpath 'org.parchmentmc:librarian:1.+'
classpath 'org.codehaus.groovy:groovy-json:3.0.10'
}
}
plugins {
id 'org.cadixdev.licenser' version '0.6.1'
id 'idea'
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.parchmentmc.librarian.forgegradle'
apply plugin: 'org.spongepowered.mixin'
def localProperties = new File('./dev.gradle')
localProperties.createNewFile()
apply from: 'dev.gradle'
// These properties can all be customized from dev.gradle
def mappingsChannel = project.hasProperty('mappings_channel') ? mappings_channel : 'official'
def mappingsVersion = project.hasProperty('mappings_version') ? mappings_version : minecraft_version
def minifyResources = project.hasProperty("minify_resources") ? minify_resources : true
println "Using mappings: " + mappingsChannel + " / " + mappingsVersion
group = "net.dries007.tfc" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "TerraFirmaCraft-Forge-${minecraft_version}"
// Use version from environment variable, if set
def envVersion = System.getenv('VERSION')
version = envVersion == null ? '0.0.0-indev' : envVersion
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
sourceSets {
test
main {
runtimeClasspath += sourceSets.test.output
}
}
repositories {
mavenCentral()
mavenLocal()
maven {
// JEI
name = "Progwml6 maven"
url = "https://dvs1.progwml6.com/files/maven/"
}
maven {
// Mirror for JEI
name = "ModMaven"
url = "https://modmaven.k-4u.nl"
}
maven {
// Cyanide
name = "AlcatrazEscapee"
url = "https://alcatrazescapee.jfrog.io/artifactory/mods"
}
maven {
// Patchouli
name = "BlameJared"
url = "https://maven.blamejared.com"
}
flatDir {
dirs 'libs'
}
}
minecraft {
mappings channel: mappingsChannel, version: mappingsVersion
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
runs {
client {
workingDirectory project.file('run')
args '-mixin.config=' + mod_id + '.mixins.json'
property 'forge.logging.console.level', 'debug'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
property 'forge.enabledGameTestNamespaces', mod_id
jvmArgs '-ea', '-Xmx4G', '-Xms4G'
mods {
tfc {
source sourceSets.main
source sourceSets.test
}
}
}
server {
workingDirectory project.file('run')
args '-mixin.config=' + mod_id + '.mixins.json', '--nogui'
property 'forge.logging.console.level', 'debug'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
property 'forge.enabledGameTestNamespaces', mod_id
jvmArgs '-ea', '-Xmx4G', '-Xms4G'
mods {
tfc {
source sourceSets.main
source sourceSets.test
}
}
}
gameTestServer {
workingDirectory project.file('run/gametest')
args '-mixin.config=' + mod_id + '.mixins.json', '--nogui'
property 'forge.logging.markers', ''
property 'forge.logging.console.level', 'info'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
property 'forge.enabledGameTestNamespaces', mod_id
jvmArgs '-ea', '-Xmx4G', '-Xms4G'
forceExit false
mods {
tfc {
source sourceSets.main
source sourceSets.test
}
}
}
}
}
dependencies {
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
// runtimeOnly fg.deobf("com.alcatrazescapee:cyanide-forge-1.18.2:2.1.0") { transitive = false }
// runtimeOnly fg.deobf("libs:journeymap-1.17.1:5.7.3rc3") // File: libs/journey,ap-1.17.1-5.7.3rc3.jar
// runtimeOnly fg.deobf("libs:panorama:1.2.0") // File: libs/panorama-1.2.0.jar
// JEI
compileOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}:api")
runtimeOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}")
// Patchouli
// We need to compile against the full JAR, not just the API, because we do some egregious hacks.
compileOnly fg.deobf("vazkii.patchouli:Patchouli:${patchouli_version}")
runtimeOnly fg.deobf("vazkii.patchouli:Patchouli:${patchouli_version}")
if (System.getProperty("idea.sync.active") != "true") {
annotationProcessor "org.spongepowered:mixin:${mixin_version}:processor"
}
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
test {
useJUnitPlatform()
testLogging {
events "failed"
exceptionFormat "full"
}
}
processResources {
filesMatching("**/book.json") {
expand "version": project.version
}
if (minifyResources) {
doLast {
def jsonMinifyStart = System.currentTimeMillis()
def jsonMinified = 0
def jsonBytesBefore = 0, jsonBytesAfter = 0;
fileTree(dir: outputs.files.asPath, include: "**/*.json").each { File file ->
jsonMinified++
def oldLength = file.length()
try {
file.text = JsonOutput.toJson(new JsonSlurper().parse(file))
.replace('"__comment__":"This file was automatically created by mcresources",', '')
}
catch (Exception e) {
System.out.println("Parsing JSON error in " + file.path)
throw e
}
jsonBytesBefore += oldLength;
jsonBytesAfter += file.length();
}
println('Minified ' + jsonMinified + ' json files. Reduced ' + (int) (jsonBytesBefore / 1024) + ' kB to ' + (int) (jsonBytesAfter / 1024) + ' kB (' + (String.format('%.2f', 100f * jsonBytesAfter / jsonBytesBefore)) + '%). Took ' + (System.currentTimeMillis() - jsonMinifyStart) + 'ms.')
}
}
}
idea {
module {
excludeDirs.add(file("run"))
}
}
// Automatically apply a license header when running checkLicense / updateLicense
license {
header = project.file('HEADER.txt')
include '**/*.java'
exclude 'net/dries007/tfc/world/noise/FastNoiseLite.java' // Fast Noise
}
// Puts the mod version into the jar for mods.toml to read from
jar {
manifest {
attributes ([
"Implementation-Version": "${project.version}",
"MixinConfigs" : "${mod_id}.mixins.json"
])
}
}
mixin {
add sourceSets.main, "${mod_id}.refmap.json"
add sourceSets.test, "${mod_id}.refmap.json"
}