-
Notifications
You must be signed in to change notification settings - Fork 72
/
build.gradle
293 lines (253 loc) · 8.53 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url = "http://files.minecraftforge.net/maven" }
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT' }
}
plugins {
id "com.matthewprenger.cursegradle" version "1.0.7"
}
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'maven-publish'
ext.buildnumber = 0
if (System.getenv('BUILD_NUMBER') != null)
project.buildnumber = System.getenv('BUILD_NUMBER')
else
logger.lifecycle "No build number detected, setting to 0"
group = "com.enderio.core"
archivesBaseName = "EnderCore"
version = "${minecraft_version}-${mod_version}.${buildnumber}"
sourceCompatibility = targetCompatibility = "1.8" // Need this here so eclipse task generates correctly.
compileJava {
sourceCompatibility = targetCompatibility = "1.8"
}
boolean dev = System.getenv("RELEASE") == null || System.getenv("RELEASE").equalsIgnoreCase("false")
def type = 'alpha'
if (project.hasProperty('mod_appendix')) {
version += "-${project.mod_appendix}"
type = project.mod_appendix
}
minecraft {
mappings = "snapshot_20171212"
version = "${minecraft_version}-${forge_version}"
runDir = 'run'
replace "@VERSION@", project.version
replaceIn "EnderCore.java"
}
configurations {
compile.extendsFrom exportedCompile
}
sourceSets {
main {
java {
srcDir 'src/main/java'
exclude '**/enderio/trigger/**'
}
resources {
srcDir 'resources'
}
}
}
processResources {
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
from(sourceSets.main.resources.srcDirs) {
include '**/*.info'
include '**/*.properties'
expand 'version': project.version, 'mcversion': project.minecraft.version
}
from(sourceSets.main.resources.srcDirs) {
exclude '**/*.info'
exclude '**/*.properties'
}
}
/*
// Add external annotations
eclipse.classpath.file {
withXml {
def node = it.asNode()
node.get('classpathentry').each {
// Allow external annotations on Minecraft/Forge and JRE
if (it.attribute('path').contains('forgeSrc') || it.attribute('path').contains('JRE_CONTAINER')) {
it.appendNode('attributes').appendNode('attribute', [name: 'annotationpath', value: '/'+rootProject.name+'/externalannotations/'])
}
}
}
}
*/
task coreJar(type: Jar) {
from(sourceSets.main.output) {
include 'com/enderio/core/common/transform/**'
}
manifest {
attributes 'FMLCorePlugin': "com.enderio.core.common.transform.EnderCorePlugin"
attributes 'Maven-Artifact': "${project.group}:${project.archivesBaseName}:${project.version}:core"
}
classifier 'core'
}
reobf {
coreJar { mappingType = 'SEARGE' }
}
jar {
from { configurations.exportedCompile.collect { it.isDirectory() ? it : zipTree(it) } }
exclude 'com/enderio/core/common/transform/**'
from(coreJar.archivePath.absolutePath) {
include '*'
into ("META-INF/libraries")
}
manifest {
attributes 'ContainedDeps': coreJar.archivePath.name
}
}
task deobfJar(type: Jar) {
from sourceSets.main.output
from { configurations.exportedCompile.collect { it.isDirectory() ? it : zipTree(it) } }
classifier = 'deobf'
}
task apiJar(type: Jar) {
from sourceSets.main.allSource
from sourceSets.main.output
include 'crazypants/enderio/api/**/*'
classifier = 'api'
}
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
build.dependsOn apiJar, sourceJar, deobfJar, javadoc
publishing {
tasks.publish.dependsOn 'build'
publications {
mavenJava(MavenPublication) {
from components.java
artifact deobfJar
artifact sourceJar
artifact apiJar
artifact coreJar
}
}
repositories {
if (project.hasProperty('mavendir')) {
maven { url mavendir }
} else {
mavenLocal()
}
}
}
task checkTranslations << {
Map<String, String> mapen = new HashMap<String, String>()
(new File('resources/assets/endercore/lang/en_US.lang')).eachLine {
def (value1, value2) = it.tokenize( '=' )
if (value1 == null || value2 == null) {return}
mapen.put(value1, value2)
}
new File('resources/assets/endercore/lang/').eachFileMatch( ~".*\\.lang\$" ) { langfile ->
if (!langfile.getName().contains("en_US")) {
Map<String, String> map = new HashMap<String, String>()
File outfile = new File("${langfile}.txt")
Writer outwriter = outfile.newWriter("UTF8")
outwriter.write("\n// Additional translations:\n")
outwriter << langfile.filterLine {
def (value1, value2) = it.tokenize( '=' )
if (value1 == null || value2 == null) {return false}
map.put(value1, value2)
return !mapen.containsKey(value1)
}
outwriter.append("\n// Missing translations:\n")
for (e in mapen) {
if (!map.containsKey(e.key)) {
outwriter.append(e.key + "=" + e.value + "\n")
}
}
println "Created translation report ${outfile}"
}
}
}
String getChangelogText() {
def changelogFile = file('changelog.txt')
String str = ''
int lineCount = 0
boolean done = false
changelogFile.eachLine {
if (done || it == null) {
return
}
if (it.size() > 1) {
def temp = it
if (lineCount == 0) {
temp = "${archivesBaseName} ${version}"
temp = "<h2>$temp</h2>"
} else if (it.startsWith('-')) {
temp = " $temp"
} else {
temp = "<h4>$temp</h4>"
}
str += "$temp<br/>"
lineCount++
return
} else {
done = true
}
}
return str
}
String getCN() {
def firsts = ['Donald', 'Lex', 'Mike', 'Arthur', 'Bridget', 'Dorian', 'Ford', 'Guy', 'James', 'Jessica', 'John', 'Michael', 'Robinson', 'Zaphod', 'Bell', 'Penelope', 'PTerry', 'Adam', 'Anathema']
def lasts = ['Duck', 'Luthor', 'Meyers', 'Dent', 'Jones', 'Gray', 'Prefect', 'Montag', 'Moriarty', 'Rabbit', 'Watson', 'Smith', 'Corleone', 'Crusoe', 'Beeblebrox', 'Cranel', 'Akk', 'Young', 'Device']
def rand = new Random()
return firsts[rand.nextInt(firsts.size())] + ' ' + lasts[rand.nextInt(lasts.size())]
}
task mkKeyStore(type:Exec) {
workingDir projectDir
commandLine 'keytool', '-genkey', '-alias', 'signFiles', '-keystore', 'ecstore.jks', '-storepass', '123456', '-noprompt', '-dname', 'CN='+getCN(), '-keypass', '123456'
}
task signJar(type: SignJar, dependsOn: reobfJar) {
inputFile = jar.archivePath
outputFile = jar.archivePath
keyStore = 'ecstore.jks'
alias = 'signFiles'
storePass = '123456'
keyPass = '123456'
}
task signCoreJar(type: SignJar, dependsOn: reobfCoreJar) {
inputFile = coreJar.archivePath
outputFile = coreJar.archivePath
keyStore = 'ecstore.jks'
alias = 'signFiles'
storePass = '123456'
keyPass = '123456'
}
task rmKeyStorePre(type: Delete) {
delete 'ecstore.jks'
}
task rmKeyStore(type: Delete) {
delete 'ecstore.jks'
}
build.dependsOn rmKeyStore
rmKeyStore.dependsOn signJar
signJar.dependsOn mkKeyStore
signCoreJar.dependsOn mkKeyStore
mkKeyStore.dependsOn rmKeyStorePre
jar.dependsOn signCoreJar
tasks.curseforge.enabled = !dev && project.hasProperty('curseforge_key')
curseforge {
if (project.hasProperty('curseforge_key')) {
apiKey = project.curseforge_key
}
project {
id = project.projectId
changelog = System.getenv('CHANGELOG') == null || System.getenv('CHANGELOG').equals('none') ? getChangelogText() : System.getenv('CHANGELOG')
changelogType = 'html'
releaseType = type
mainArtifact(jar) {
displayName = "${archivesBaseName} - ${version}"
}
addArtifact(apiJar)
}
}