-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
168 lines (139 loc) · 5.14 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
buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url = "https://jitpack.io"
}
}
dependencies {
classpath('com.github.GTNewHorizons:ForgeGradle:1.2.11') {
// Exclude transitive dependencies that mess things up
exclude group: "org.eclipse.equinox"
exclude group: "org.eclipse.jdt"
}
}
}
apply plugin: 'forge'
version = "1.0"
group= "io.github.legacymoddingmc.example" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "UniMixinsExample"
def modid = "unimixinsexample"
minecraft {
version = "1.7.10-10.13.4.1614-1.7.10"
runDir = "run"
}
repositories {
maven {
// Fix ForgeGradle on 6+
name = "forge"
url = "http://files.minecraftforge.net/maven"
metadataSources {
artifact()
}
}
maven {
// Baubles
name = "Overmind forge repo mirror"
url = "https://gregtech.overminddl1.com/"
}
}
dependencies {
// you may put jars on which you depend on in ./libs
// or you may define them like so..
//compile "some.group:artifact:version:classifier"
//compile "some.group:artifact:version"
// real examples
//compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env
//compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env
// for more info...
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
// http://www.gradle.org/docs/current/userguide/dependency_management.html
// Baubles is our test subject for late mixins
implementation "com.azanor.baubles:Baubles:1.7.10-1.0.1.10:deobf"
}
processResources
{
// this will ensure that this task is redone when the versions change.
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
// replace version and mcversion
expand 'version':project.version, 'mcversion':project.minecraft.version
}
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
// -- Begin UniMixins section --
// -- Add UniMixins dependency --
repositories {
maven {
url 'https://jitpack.io'
}
}
def unimixinsVersion = "0.1.14"
dependencies {
implementation("com.github.LegacyModdingMC.UniMixins:unimixins-all-1.7.10:$unimixinsVersion:dev")
annotationProcessor("com.github.LegacyModdingMC.UniMixins:unimixins-all-1.7.10:$unimixinsVersion:dev")
}
// Exclude conflicting transitive dependencies.
// Only needed if you depend on a mod that depends on one of these.
// This may need to be at the end of the build script.
configurations.compile.dependencies.each {
if (it instanceof ExternalModuleDependency) {
it.exclude module: "SpongeMixins"
it.exclude module: "SpongePoweredMixin"
it.exclude module: "00gasstation-mc1.7.10"
it.exclude module: "gtnhmixins"
}
}
// -- Generic Mixin setup --
runClient {
args("--tweakClass", "org.spongepowered.asm.launch.MixinTweaker")
}
runServer {
args("--tweakClass", "org.spongepowered.asm.launch.MixinTweaker")
}
def outSrgFile = "${tasks.compileJava.temporaryDir}/outSrg.srg"
def outRefMapFile = "${tasks.compileJava.temporaryDir}/mixins.${modid}.refmap.json"
jar {
manifest {
attributes (
// This is the regular way of registering Mixin configs.
// Setting the tweak class allows Mixin to discover your mod.
'TweakClass': 'org.spongepowered.asm.launch.MixinTweaker',
// Mixin will automatically register any configs specified here.
'MixinConfigs': "mixins.${modid}.json",
// To use the IEarlyMixinLoader interface, an FML plugin needs to be
// registered.
// Note: the previous two properties aren't required for the early
// interface.
'FMLCorePlugin': 'io.github.legacymoddingmc.unimixins.example.ExampleCore',
// If your mod also contains a Forge mod (marked by a @Mod annotation),
// these need to be set or it will get ignored.
// Note that a Forge mod is required for late mixins to work.
//
// Allow Mixin to discover the Forge mod if FMLCorePluginContainsFMLMod
// is also set:
'ForceLoadAsMod': 'true',
// Allow Forge to discover the Forge mod:
'FMLCorePluginContainsFMLMod': 'true',
)
}
from outRefMapFile;
}
tasks.compileJava.options.compilerArgs += ["-AreobfSrgFile=${tasks.reobf.srg}", "-AoutSrgFile=${outSrgFile}", "-AoutRefMapFile=${outRefMapFile}"];
reobf {
addExtraSrgFile outSrgFile
}