forked from iopleke/Minechem
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
96 lines (79 loc) · 2.75 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
apply plugin: 'java'
buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = "shadow-repo"
url = "http://dl.bintray.com/content/johnrengelman/gradle-plugins/"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:1.0-SNAPSHOT'
classpath 'org.gradle.plugins:shadow:0.7.4'
}
}
apply plugin: 'shadow'
shadow
{
include 'javax/mail/**'
include 'com/sun/activation/**'
include 'javax/activation/**'
include 'com/sun/mail/**'
}
// Load configs relating to third-party JAR locations.
ext.thirdPartyJarsConfigFile = file 'thirdPartyJars.properties'
thirdPartyJarsConfigFile.withReader {
def prop = new Properties()
prop.load(new FileReader(ext.thirdPartyJarsConfigFile))
ext.thirdPartyJars = new ConfigSlurper().parse prop
}
// This mod has NEI support, so NEI+CodeChickenCore are needed to build
// it (but not required to use it).
dependencies {
compile files(thirdPartyJars.path + '/' + thirdPartyJars.NEI,
thirdPartyJars.path + '/' + thirdPartyJars.CodeChickenCore)
compile 'javax.mail:mail:1.4'
runtime 'javax.mail:mail:1.4'
}
apply plugin: 'forge'
version = 4.3
group = "pixlepix.minechem" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "Minechem"
minecraft {
version = "1.6.4-9.11.1.964"
replaceIn "common/AutoCrashReporter.java"
if (project.hasProperty("pass"))
replace "INSERTPASSWORDHERE", project.pass
}
ext.configFile = file "build.properties"
configFile.withReader {
// read config. it shall from now on be referenced as simply config or as project.config
def prop = new Properties()
prop.load(it)
project.ext.config = new ConfigSlurper().parse prop
if (System.getenv().BUILD_NUMBER != null) {
ext.buildNum = System.getenv().BUILD_NUMBER
} else {
ext.buildNum = "DEV"
}
version = project.config.mod_version + "-" + ext.buildNum
}
processResources
{
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod/info'
include 'version.properties'
// replace version and mcversion
expand 'version': project.config.mod_version, 'mcversion': project.minecraft.version, 'buildnumber': project.config.build_number
}
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
exclude 'version.properties'
}
}