-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
212 lines (188 loc) · 7.83 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
plugins {
id 'eclipse'
id 'maven-publish'
id 'net.neoforged.gradle' version '[6.0.18,6.2)'
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
id 'org.spongepowered.mixin' version '0.7.+'
}
version = systeams_version
group = 'chiefarug.mods.thermal_systeams'// http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "systeams-${minecraft_version}"
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}"
minecraft {
mappings channel: 'parchment', version: "${parchment_version}-${minecraft_version}"
accessTransformer = file 'src/main/resources/META-INF/accesstransformer.cfg'
runs {
client {
workingDirectory project.file("run/${it.name}")
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
// enable using JBR to hotswap MOAR
// also ignore the option if someone isnt using JBR
jvmArgs '-XX:+AllowEnhancedClassRedefinition', '-XX:+IgnoreUnrecognizedVMOptions'
mods {
systeams {
source sourceSets.main
}
}
}
server {
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
property 'forge.enabledGameTestNamespaces', 'systeams'
args '--nogui'
}
// This run config launches GameTestServer and runs all registered gametests, then exits.
// By default, the server will crash when no gametests are provided.
// The gametest system is also enabled by default for other run configs under the /test command.
gameTestServer {
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
property 'forge.enabledGameTestNamespaces', 'systeams'
}
data {
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
args '--mod', 'systeams', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
}
}
}
// Include resources generated by data generators.
sourceSets.main.resources { srcDir 'src/generated/resources' }
repositories {
maven { // JEI
url 'https://modmaven.dev'
content {
includeGroup 'mezz.jei'
}
}
maven { // Thermal
// Human Browsable: https://nexus.covers1624.net/#browse/browse:cofh-releases
url 'https://maven.covers1624.net/'
content {
includeGroup 'com.teamcofh'
}
}
maven { // Mekanism and PneumaticCraft
url 'https://modmaven.dev/'
content {
includeGroup 'mekanism'
includeGroup 'me.desht.pneumaticcraft'
}
}
maven { // Pipez
url 'https://cursemaven.com'
content {
includeGroup "curse.maven"
}
}
flatDir {
dirs 'run/external-mods'
content {
includeGroup 'local'
}
}
}
dependencies {
// Specify the version of Minecraft to use. If this is any group other than 'net.minecraft', it is assumed
// that the dep is a ForgeGradle 'patcher' dependency, and its patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft "net.neoforged:forge:${minecraft_version}-${neoforge_version}"
// compile against the JEI API but do not include it at runtime
compileOnly(fg.deobf("mezz.jei:jei-${minecraft_version}-common-api:${jei_version}"))
compileOnly(fg.deobf("mezz.jei:jei-${minecraft_version}-forge-api:${jei_version}"))
// at runtime, use the full JEI jar for Forge
runtimeOnly(fg.deobf("mezz.jei:jei-${minecraft_version}-forge:${jei_version}"))
// // compile against mek api
// compileOnly "mekanism:Mekanism:${minecraft_version}-${mekanism_version}-api"
// // use full mek at runtime
// stuff it and use full mek in both places. the api wasnt wanting to work.
implementation fg.deobf("mekanism:Mekanism:${minecraft_version}-${mekanism_version}")
implementation fg.deobf("com.teamcofh:cofh_core:${minecraft_version}-${cofh_core_version}")
implementation fg.deobf("com.teamcofh:thermal_core:${minecraft_version}-${thermal_core_version}")
implementation fg.deobf("com.teamcofh:thermal_foundation:${minecraft_version}-${thermal_foundation_version}")
implementation fg.deobf("com.teamcofh:thermal_expansion:${minecraft_version}-${thermal_expansion_version}")
implementation fg.deobf("me.desht.pneumaticcraft:pneumaticcraft-repressurized:${pncr_version}+mc${minecraft_version}")
//TODO: Swap this out for a release from cursemaven once its actually published.
implementation fg.deobf("local:ThermalExtra:${thermal_extra_version}-${minecraft_version}")
// run game with a few extra mods for testing
// runtimeOnly fg.deobf("com.teamcofh:thermal_dynamics:${minecraft_version}-${thermal_dynamics_version}")
runtimeOnly fg.deobf("curse.maven:pipez-443900:${pipez_fid}")
}
// Example for how to get properties into the manifest for reading at runtime.
jar {
manifest {
attributes([
"Specification-Title" : "systeams",
"Specification-Vendor" : "ChiefArug",
"Specification-Version" : "1",
"Implementation-Title" : project.name,
"Implementation-Version" : systeams_version,
"Implementation-Vendor" : "ChiefArug",
])
}
}
// Below is modified from from tinkers build.gradle. Thank you!
def modsTomlSpec = copySpec {
from(sourceSets.main.resources) {
include 'META-INF/mods.toml'
expand 'systeams_version': systeams_version,
'minecraft_range': minecraft_range,
'neoforge_range': neoforge_range,
'thermal_core_range': thermal_core_range
}
}
// This works
def buildPaths = [
"$rootDir/out/production/resources", //IDEA
"$rootDir/bin", // Eclipse (No idea if this is correct)
]
tasks.register('replaceResources') {
// ensure directory exists, first build likes to fail
new File("${processResources.destinationDir}/META-INF").mkdirs()
// copy for gradle
copy {
outputs.upToDateWhen { false }
with modsTomlSpec
into processResources.destinationDir
}
// copy for IDEs
buildPaths.each { path ->
if (new File(path).exists()) {
copy {
outputs.upToDateWhen { false }
with modsTomlSpec
into path
}
}
}
}
processResources {
exclude 'META-INF/mods.toml'
finalizedBy replaceResources
}
// Example configuration to allow publishing using the maven-publish plugin
// This is the preferred method to reobfuscate your jar file
jar.finalizedBy('reobfJar')
// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing
// publish.dependsOn('reobfJar')
publishing {
publications {
register('mavenJava', MavenPublication) {
artifact jar
}
}
repositories {
maven {
url "file://${project.projectDir}/mcmodsrepo"
}
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
}