-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
147 lines (120 loc) · 4.21 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
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.2-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'
version = '1.11-0000'
group = "com.elytradev.movingworld"
archivesBaseName = "movingworld"
sourceCompatibility = 1.8
targetCompatibility = 1.8
minecraft {
version = "1.11.2-13.20.0.2255"
runDir = "run"
def replacementVersion = 'MOD_VERSION = \"' + project.version + '\"'
replace("MOD_VERSION = \"@MOVINGWORLDVER@\"",
replacementVersion)
mappings = "snapshot_20170308"
}
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.8-SNAPSHOT') {
exclude module: 'launchwrapper'
exclude module: 'guava'
}
compile 'com.elytradev:concrete:0.1.0'
shadow 'com.elytradev:concrete:0.1.0'
}
shadowJar {
exclude 'dummyThing'
relocate 'com.elytradev.concrete', "com.elytradev.movingworld.repackage.com.elytradev.concrete"
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
{
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand 'version': project.version, 'mcversion': project.minecraft.version
}
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)
}
}
}
}
}