-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
165 lines (136 loc) · 4.88 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
buildscript {
repositories {
jcenter()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = 'sponge'
url = 'http://repo.spongepowered.org/maven'
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.4-SNAPSHOT'
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
}
}
apply plugin: 'java'
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'idea'
def branch
if (System.env.BRANCH_NAME) {
// Jenkins support
branch = System.env.BRANCH_NAME
branch = branch.substring(branch.lastIndexOf('/') + 1)
} else {
branch = 'git rev-parse --abbrev-ref HEAD'.execute().in.text.trim()
}
def commits = 'git rev-list --count HEAD'.execute().in.text.trim()
def dirty = !'git diff-index HEAD'.execute().in.text.trim().isEmpty()
version = branch + '-' + modVersion + '.' + commits + (dirty ? '-dirty' : '')
group = modGroup
archivesBaseName = modBaseName
sourceCompatibility = 1.8
targetCompatibility = 1.8
minecraft {
version = project.forgeVersion
runDir = "run"
def replacementVersion = 'MOD_VERSION = \"' + project.version + '\"'
replace("MOD_VERSION = \"@MOVINGWORLDVER@\"",
replacementVersion)
mappings = project.mcpVersion
}
mixin {
add sourceSets.main, "mixins.movingworld.refmap.json"
}
repositories {
maven {
name 'spongepowered'
url 'https://repo.spongepowered.org/maven/'
}
maven {
url = 'http://repo.elytradev.com/'
}
}
dependencies {
compile('org.spongepowered:mixin:0.6.9-SNAPSHOT') {
exclude module: 'launchwrapper'
exclude module: 'guava'
}
compile 'com.elytradev:concrete:0.2.2:all'
shadow 'com.elytradev:concrete:0.2.2:all'
compile 'cglib:cglib:3.2.5'
compile 'org.objenesis:objenesis:2.5.1'
}
shadowJar {
exclude 'dummyThing'
relocate 'com.elytradev.concrete', "com.elytradev.movingworld.repackage.com.elytradev.concrete"
configurations = [project.configurations.shadow]
dependencies {
include(dependency('org.spongepowered:mixin'))
}
classifier = 'full'
}
reobf {
shadowJar {
mappingType = 'SEARGE'
classpath = sourceSets.main.compileClasspath
}
}
build.dependsOn(shadowJar)
jar {
manifest {
attributes(
'MixinConfigs': 'mixins.movingworld.json',
'TweakClass': 'org.spongepowered.asm.launch.MixinTweaker',
'TweakOrder': '0',
'FMLCorePlugin': 'com.elytradev.movingworld.common.asm.coremod.MovingWorldCoreMod',
'FMLCorePluginContainsFMLMod': 'true',
'ForceLoadAsMod': 'true',
'FMLAT': 'MovingWorld_at.cfg'
)
}
}
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"
}
}
idea {
workspace {
if (iws != null) {
iws.withXml { xmlFile ->
//Please don't kill me for my shitty groovy usage ;-;
def runManager = xmlFile.asNode().component.find { it.@name == 'RunManager' }
def minecraftClientDefaults = runManager.configuration.find {
it.@name == 'Minecraft Client' && it.@type == 'Application'
}
def minecraftServerDefaults = runManager.configuration.find {
it.@name == 'Minecraft Server' && it.@type == 'Application'
}
def minecraftClientVMArgs = '-Xincgc -Xmx1024M -Xms1024M -Dfml.coreMods.load=com.elytradev.movingworld.common.asm.coremod.MovingWorldCoreMod -Dmixin.debug=true'
minecraftClientDefaults.option.find { it.@name == 'VM_PARAMETERS' }.replaceNode {
option(name: 'VM_PARAMETERS', value: minecraftClientVMArgs)
}
def minecraftServerVMArgs = '-Xincgc -Dfml.ignoreInvalidMinecraftCertificates=true -Dfml.coreMods.load=com.elytradev.movingworld.common.asm.coremod.MovingWorldCoreMod -Dmixin.debug=true'
minecraftServerDefaults.option.find { it.@name == 'VM_PARAMETERS' }.replaceNode {
option(name: 'VM_PARAMETERS', value: minecraftServerVMArgs)
}
}
}
}
}