This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
forked from fr1kin/ForgeHax
-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle
154 lines (125 loc) · 4.17 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
import org.apache.tools.ant.filters.ReplaceTokens
buildscript {
repositories {
jcenter()
maven { url "https://maven.minecraftforge.net" }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath("com.anatawa12.forge:ForgeGradle:2.3-1.0.+") {
changing = true
}
}
}
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/groups/public/" }
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'net.minecraftforge.gradle.forge'
sourceCompatibility = targetCompatibility = '1.8'
group 'com.matt.forgehax'
version project.property('forgehax.version')
archivesBaseName = "forgehax-" + project.property('forgehax.mc.version')
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
sourceSets {
schematica_api {
compileClasspath += main.compileClasspath
}
main {
compileClasspath += schematica_api.output
}
}
minecraft {
version = project.property('forgehax.forge.version')
runDir = "run"
// channel_mapping
mappings = "${project.property('forgehax.mcp.channel')}_${project.property('forgehax.mcp.mapping')}"
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '2.15.0'
}
jar {
manifest {
attributes(
'FMLCorePlugin': 'com.matt.forgehax.asm.ForgeHaxCoreMod',
'FMLCorePluginContainsFMLMod': 'true'
)
}
}
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'
}
filesMatching('**/*.properties') {
it.filter ReplaceTokens, tokens: [
"forgehax.version" : project.property("forgehax.version"),
"forgehax.mc.version" : project.property("forgehax.mc.version"),
"forgehax.forge.version": project.property("forgehax.forge.version"),
"forgehax.mcp.version" : project.property("forgehax.mcp.version"),
"forgehax.mcp.channel" : project.property("forgehax.mcp.channel"),
"forgehax.mcp.mapping" : project.property("forgehax.mcp.mapping")
]
}
}
task setGameDir() {
// Check if custom gamedir has been passed, if not use default ones per platform
if (!project.hasProperty("gameDir")) {
if (org.gradle.internal.os.OperatingSystem.current().isWindows()) {
project.ext.gameDir = System.getenv("APPDATA") + "/.minecraft"
} else if (org.gradle.internal.os.OperatingSystem.current().isMacOsX()) {
project.ext.gameDir = System.properties["user.home"] + "/Library/Application Support/minecraft"
} else {
project.ext.gameDir = System.properties["user.home"] + "/.minecraft"
}
}
}
class CopyJarTask extends DefaultTask {
@TaskAction
protected void exec() {
project.copy {
final gameDir = project.ext.gameDir;
final minecraft = project.minecraft;
final modDir = "$gameDir/mods/" + minecraft.version
// find previous jar (if it exists)
final previousJars = project.fileTree(dir: modDir).matching {
include project.archivesBaseName + '*'
}.files
// change file name
if (previousJars) {
// create .backups folder
final backupDir = modDir + '/.backups/'
project.file(backupDir).mkdirs()
for (File previousJar : previousJars) {
final n = modDir + '/.backups/' + previousJar.getName() + '.bk'
def f = project.file(n)
def i = 1
while (f.exists()) {
f = project.file(n + '_' + i)
i++
}
previousJar.renameTo(f)
}
}
// copy forgehax jar from libs to forge mod folder
from project.jar
into "$gameDir/mods/" + minecraft.version
}
}
}
task copyJar(type: CopyJarTask, dependsOn: [setGameDir])
build.finalizedBy copyJar