-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
191 lines (168 loc) · 6.57 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
import org.gradle.api.tasks.bundling.Jar
plugins {
id 'net.minecraftforge.gradle' version '[6.0,6.2)'
id 'maven-publish'
id 'org.spongepowered.mixin' version '0.7.+'
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
}
apply plugin: "java"
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
base {
archivesName = "gravisuit"
}
jarJar.enable()
version = "${mod_version}"
group = "trinsdar.gravisuit" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
minecraft {
mappings channel: "parchment", version: "${rootProject.mappings_version}-${rootProject.minecraft_version}"
copyIdeResources = true
runs {
// applies to all the run configs below
configureEach {
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
property 'forge.enabledGameTestNamespaces', mod_id
mods {
"${mod_id}" {
source sourceSets.main
}
}
}
client {
property 'forge.enabledGameTestNamespaces', mod_id
}
server {
workingDirectory project.file('run/server')
property 'forge.enabledGameTestNamespaces', mod_id
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 {
property 'forge.enabledGameTestNamespaces', mod_id
}
data {
// example of overriding the workingDirectory set in configureEach above
workingDirectory project.file('run-data')
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
}
}
}
repositories{
maven { url "https://dist.creeper.host/Sponge/maven" }
maven { // Tech Reborn
name 'Tech Reborn'
url 'https://maven.modmuss50.me/'
}
maven { // Buildcraft
name 'buildcraft'
url 'https://mod-buildcraft.com/maven/'
}
maven { // CCL, CCC, NEI
name 'Chickenbones Repo'
url 'https://chickenbones.net/maven/'
}
maven {
name = 'parchment'
url = 'https://maven.parchmentmc.org'
}
maven { // The One Probe, EnderIO, EnderCore
name 'tterrag'
url 'https://maven.tterrag.com/'
}
maven { // CoFH
name 'Covers Maven'
url 'https://maven.covers1624.net/'
}
maven { // McJtyLib
url "https://modmaven.k-4u.nl"
}
maven {
url = "https://www.cursemaven.com"
}
maven { // JEI
name 'DVS1 Maven FS'
url 'https://dvs1.progwml6.com/files/maven/'
}
maven { url "https://maven.shedaniel.me" }
maven {
url "https://cursemaven.com"
}
maven {
url = "https://api.modrinth.com/maven"
}
maven {
url 'https://repo.repsy.io/mvn/trinsdar/trins-mods/'
}
maven { url 'https://jitpack.io' }
}
dependencies {
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
// Apply Mixin AP
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
implementation(fg.deobf("curse.maven:ic2_classic-242942:5612597"))
implementation(fg.deobf("curse.maven:ic2c_additions-304040:4360883"))
implementation(fg.deobf("curse.maven:curios-309927:3871347"))
implementation(fg.deobf("curse.maven:lootr-361276:4596364"))
implementation(fg.deobf("curse.maven:applied-energistics-2-223794:4733119"))
implementation fg.deobf("curse.maven:jei-238222:4712866")
implementation(fg.deobf("maven.modrinth:carbon-config:mJxg4ZgM"))
// modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-forge:${rootProject.rei_version}"
// modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-plugin-compatibilities-forge:9.1.530"
implementation fg.deobf('io.github.trinsdar:PlayerAbilityLib:1.6.0.1')
implementation('io.github.trinsdar:trins-wiki-lib:1.0.0'){
transitive = false
}
jarJar('io.github.trinsdar:PlayerAbilityLib:1.6.0.1'){
jarJar.ranged(it, "[1.6.0.1,)")
}
jarJar('io.github.trinsdar:trins-wiki-lib:1.0.0'){
transitive = false
jarJar.ranged(it, "[1.0.0,)")
}
jarJar("maven.modrinth:carbon-config:mJxg4ZgM") {
jarJar.ranged(it, "[1.19.2-1.2.6,)")
}
//implementation fg.deobf("curse.maven:sophisticated-backpacks-422301:5194759")
implementation fg.deobf("curse.maven:sophisticated-core-618298:5296313")
implementation fg.deobf("curse.maven:advanced-solars-classic-314835:5693305")
}
mixin {
add sourceSets.main, 'gravisuit.mixins.refmap.json'
config 'gravisuit.mixins.json'
debug.verbose = true
debug.export = true
}
processResources {
// this will ensure that this task is redone when the versions change.
inputs.property "version", project.mod_version
filesMatching("META-INF/mods.toml") {
expand "version": project.mod_version
}
}
tasks.named('jarJar', Jar).configure {
archiveClassifier.set("")
}
tasks.named('jar', Jar).configure {
manifest {
attributes([
'Specification-Title' : mod_id,
'Specification-Vendor' : "Trinsdar",
'Specification-Version' : '1', // We are version 1 of ourselves
'Implementation-Title' : project.name,
'Implementation-Version' : project.jar.archiveVersion,
'Implementation-Vendor' : "Trinsdar",
'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
// This is the preferred method to reobfuscate your jar file
finalizedBy 'reobfJar'
archiveClassifier.set "thin"
}