-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
133 lines (110 loc) · 3.81 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
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.1-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 = 'MC1.9-INDEV'
group = "darkevilmac.movingworld"
archivesBaseName = "movingworld"
minecraft {
version = "1.9-12.16.0.1820-1.9"
runDir = "run"
mappings = "snapshot_20160401"
replace '@MOVINGWORLDVER@', project.version
}
mixin {
add sourceSets.main, "mixins.movingworld.refmap.json"
}
repositories {
maven {
name 'spongepowered'
url 'https://repo.spongepowered.org/maven/'
}
}
dependencies {
compile('org.spongepowered:mixin:0.5.3-SNAPSHOT') {
exclude module: 'launchwrapper'
exclude module: 'guava'
}
}
shadowJar {
exclude 'dummyThing'
dependencies {
include(dependency('org.spongepowered:mixin'))
}
classifier = 'full'
}
reobf {
shadowJar {
mappingType = 'NOTCH'
classpath = sourceSets.main.compileClasspath
}
}
build.dependsOn(shadowJar)
jar {
manifest {
attributes(
'MixinConfigs': 'mixins.movingworld.json',
'TweakClass': 'org.spongepowered.asm.launch.MixinTweaker',
'TweakOrder': '0',
'FMLCorePlugin': 'darkevilmac.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=darkevilmac.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=darkevilmac.movingworld.common.asm.coremod.MovingWorldCoreMod -Dmixin.debug=true'
minecraftServerDefaults.option.find { it.@name == 'VM_PARAMETERS' }.replaceNode {
option(name: 'VM_PARAMETERS', value: minecraftServerVMArgs)
}
}
}
}
}