-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
98 lines (83 loc) · 2.69 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
buildscript {
repositories {
jcenter()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
}
}
plugins {
id "com.matthewprenger.cursegradle" version "1.0.9"
}
apply plugin: 'net.minecraftforge.gradle.forge'
ext.configFile = file "build.properties"
configFile.withReader {
// Load config. It shall from now be referenced as simply config or project.config
def prop = new Properties()
prop.load(it)
project.ext.config = new ConfigSlurper().parse prop
}
version = config.minecraft_version + "-" + config.mod_version
group = "com.indemnity83.irontanks"
archivesBaseName = "irontanks"
sourceCompatibility = targetCompatibility = config.java_compatability
compileJava {
sourceCompatibility = targetCompatibility = config.java_compatability
}
minecraft {
version = config.minecraft_version + "-" + config.forge_version
mappings = config.mappings
runDir = "run"
// Try appending the github sha first
if (System.getenv("GITHUB_SHA") != null) {
project.version += "+${System.getenv("GITHUB_SHA").substring(0,7)}"
// If that doesn't work, just append "SNAPSHOT"
} else {
project.version += "+SNAPSHOT"
}
// replacing stuff in the source
replace "\${version}", project.version
replace "\${mcversion}", version
// Replace @Mod.acceptedMinecraftVersions specially as it has to be a valid version in a dev environment :/
replace "(gradle_replace_mcversion,)", "[" + version + "]"
replace "(gradle_replace_forgeversion,)", "[" + config.forge_version + ",)"
replace "(gradle_replace_buildcraftversion,)", "[" + config.buildcraft_version + ",)"
}
curseforge {
apiKey = System.getenv("CURSE_API_KEY") ?: 'no-key'
project {
id = '236226'
releaseType = 'release'
changelog = ''
relations {
requiredLibrary 'buildcraft'
}
}
}
repositories {
maven {
name "BuildCraft"
url "http://www.mod-buildcraft.com/maven"
}
}
dependencies {
deobfCompile "com.mod-buildcraft:buildcraft:" + config.buildcraft_version
}
processResources
{
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
// replace version and mcversion
// ${version} and ${mcversion} are the exact strings being replaced
expand "version":project.version, "mcversion":project.minecraft.version
}
// copy everything else, that's not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}