forked from RPTools/maptool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
353 lines (280 loc) · 9.42 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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
import org.apache.tools.ant.filters.ReplaceTokens
import java.text.SimpleDateFormat
import org.ajoberstar.grgit.*
ext.repo = Grgit.open(project.file('.'))
task wrapper(type: Wrapper) {
gradleVersion='4.5.1'
}
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'org.ajoberstar:gradle-git:0.11.2'
classpath "de.gliderpilot.gradle.jnlp:gradle-jnlp-plugin:0.0.5"
classpath "com.diffplug.gradle.spotless:spotless:1.3.0-SNAPSHOT"
}
}
configurations {
osxTools
}
configurations.all {
resolutionStrategy {
cacheChangingModulesFor 0, 'seconds'
}
}
dependencies {
osxTools 'com.oracle.appbundler:AppBundlerTask:1.0'
}
ext.compileDate = new Date();
ext.yyyymmdd = (new SimpleDateFormat('yyyyMMDD')).format(ext.compileDate);
/*
* Gets the version name from the latest Git tag
*/
def getVersionName() {
if (project.hasProperty('buildVersion')) {
return buildVersion
} else {
String vtxtVersionNo = file('build-resources/version.txt').text.trim()
return vtxtVersionNo
}
}
allprojects {
repositories {
mavenCentral()
maven {
url = 'http://maptool.craigs-stuff.net/repo/'
}
mavenLocal()
}
group = 'net.rptools.maptool'
version = getVersionName()
}
subprojects {
apply plugin: 'java'
apply plugin: 'findbugs'
apply plugin: 'pmd'
apply plugin: 'application'
apply plugin: "com.diffplug.gradle.spotless"
sourceCompatibility = 1.7
targetCompatibility = 1.7
// Dont fail build if tests fail until tests are cleaned up
test.ignoreFailures = true
findbugs {
ignoreFailures = true
toolVersion = '3.0.0'
effort = 'max'
sourceSets = [] // Empty source set so it wont run during build/check
}
pmd {
ignoreFailures = true
sourceSets = [] // Empty source set so it wont run during tebuild/check
}
spotless {
java {
eclipseFormatFile '../build-resources/eclipse.prefs.formatter.xml'
}
}
}
task showBuildVersion() << {
println 'Build Version Number = ' + project.version
}
project(':launcher') {
mainClassName='net.rptools.maptool.launcher.MapToolLauncher'
ext.distSource = projectDir.getPath() + '/src/dist/'
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
}
jar {
manifest.attributes(
'Main-Class': mainClassName,
)
}
processResources {
from(sourceSets.main.resources.srcDirs) {
include '**/*.properties'
filter(ReplaceTokens, tokens: [
'buildDate': rootProject.ext.yyyymmdd, 'buildNumber': getVersionName()])
}
from(sourceSets.main.resources.srcDirs) {
exclude '**/*.properties'
}
}
task release(dependsOn: assemble) << {
}
}
project(':maptool') {
apply plugin: 'de.gliderpilot.jnlp'
mainClassName='net.rptools.maptool.client.LaunchInstructions'
ext.distSource = projectDir.getPath() + '/src/dist/'
dependencies {
compile 'net.java.abeille:abeille-formsrt:2.0'
compile 'net.rptools.clientserver:clientserver:1.0.b17'
//compile 'net.rptools.clientserver:clientserver:1.4.0.+'
compile 'org.hibernate:antlr:2.7.5H3'
compile 'commons-beanutils:commons-beanutils-core:1.8.3'
compile 'org.ow2.util.bundles:commons-collections-3.2.1:1.0.0'
compile 'commons-io:commons-io:2.0'
compile 'commons-jxpath:commons-jxpath:1.3'
compile 'commons-lang:commons-lang:2.6'
compile 'commons-logging:commons-logging:1.1.1'
compile 'commons-net:commons-net:3.2'
compile 'net.rptools.decktool:decktool:1.0.b1'
compile 'net.rptools.dicelib:dicelib:1.4.0.+'
compile 'net.sf.ezmorph:ezmorph:1.0.5'
compile 'com.caucho.hessian:hessian:3.1.6'
compile 'jide-common:jide-common:3.2.3'
compile 'jide-components:jide-components:3.2.3'
compile 'jide-dialogs:jide-dialogs:3.2.3'
compile 'jide-dock:jide-dock:3.2.3'
compile 'jide-editor:jide-editor:3.2.3'
compile 'jide-grids:jide-grids:3.2.3'
compile 'jide-properties:jide-properties:3.2.3'
compile 'jide-shortcut:jide-shortcut:3.2.3'
compile 'de.huxhorn.sulky:de.huxhorn.sulky.3rdparty.jlayer:1.0'
compile 'rhino:js:1.7R1'
compile 'net.sf.json-lib:json-lib:2.4:jdk15'
compile 'log4j:log4j:1.2.16'
compile 'net.rptools.maptool.resource:maptool.resource:1.0.b18'
compile 'net.rptools.parser:parser:1.1.b24'
//compile 'net.rptools.parser:parser:1.4.0.+'
compile 'ca.odell.renderpack:renderpack:1.2004'
compile 'net.rptools.rplib:rplib:1.4.0.3'
compile 'net.tsc.servicediscovery:servicediscovery:1.0.b5'
compile 'org.swinglabs:swing-worker:1.1'
compile 'net.sbbi.upnp:upnplib:1.0.9-nodebug'
compile 'com.withay:withay-util:1.0'
compile 'xmlpull:xmlpull:1.1.3.1'
compile 'xpp3:xpp3_min:1.1.4c'
compile 'com.thoughtworks.xstream:xstream:1.4.1'
compile 'yasb:yasb:0.2-21012007'
compile 'de.muntjak.tinylookandfeel:tinylaf-nocp:1.4.0'
compile 'org.eclipse.jetty:jetty-server:9.3.0.M0'
compile 'org.eclipse.jetty:jetty-servlet:9.3.0.M0'
compile 'org.eclipse.jetty:jetty-webapp:9.3.0.M0'
compile 'org.eclipse.jetty:jetty-continuation:9.3.0.M1'
compile 'org.eclipse.jetty.websocket:websocket-server:9.3.0.M1'
compile 'org.eclipse.jetty.websocket:websocket-client:9.3.0.M1'
compile 'org.eclipse.jetty.websocket:websocket-servlet:9.3.0.M1'
compile 'org.eclipse.jetty.websocket:websocket-api:9.3.0.M1'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
processResources {
from(sourceSets.main.resources.srcDirs) {
include '**/*.txt'
filter(ReplaceTokens, tokens: [
'buildDate': rootProject.ext.yyyymmdd, 'buildNumber': getVersionName()])
}
from(sourceSets.main.resources.srcDirs) {
exclude '**/*.txt'
}
}
task copyLibs(type: Sync) {
from configurations.compile
into jar.destinationDir.getPath() + '/lib'
}
jar {
manifest.attributes(
'Main-Class': mainClassName,
'Class-Path': configurations.runtime.files.collect { "lib/" + it.name }.join(' ')
)
}
assemble.dependsOn += copyLibs;
task release(dependsOn: build) << {
}
jnlp {
withXml {
information {
title 'RPTools MapTool'
vendor project.group ?: project.name
}
security {
'all-permissions'()
}
}
signJarParams = [
storepass: 'rptools',
keystore: '../build-resources/rptools-keystore',
alias: 'rptools',
lazy: 'true'
]
}
}
task deleteBuild(type: Delete) {
delete 'build/'
}
task clean(dependsOn: deleteBuild) {
}
task copySubProjectFiles(type: Sync) {
from project(':maptool').jar.destinationDir.getPath()
from project(':maptool').ext.distSource
from project(':launcher').jar.destinationDir.getPath()
from project(':launcher').ext.distSource
into 'build/tmp/dist/'
outputs.upToDateWhen {
false
}
}
copySubProjectFiles.mustRunAfter(':maptool:release', ':launcher:release')
task zipRelease(dependsOn: copySubProjectFiles, type: Zip) {
from 'build/tmp/dist/'
into ''
baseName = 'maptool-' + getVersionName()
destinationDir new File(projectDir, 'build')
outputs.upToDateWhen {
false
}
}
task osxApp() << {
def baseDir = '.'
def buildVersion = rootProject.getVersionName()
def mainClassName = project(":maptool").mainClassName
def sourceDir = 'build/tmp/dist'
ant {
taskdef(
name: 'bundleapp',
classname: 'com.oracle.appbundler.AppBundlerTask',
classpath: configurations.osxTools.asPath
)
bundleapp(
outputdirectory: 'build/tmp/',
name: 'MapTool-' + buildVersion,
displayname: 'MapTool-' + buildVersion,
identifier: 'net.rptools.maptool',
mainclassname: mainClassName,
signature: 'RPTM',
icon: 'build-resources/maptool-icon.icns'
) {
classpath(dir: sourceDir) {
include(name: '*.jar')
include(name: '**/*.jar')
}
option(value: '-Dapple.laf-useScreenMenuBar=true')
option(value: '-Dfile.encoding=UTF-8')
option(value: '-Xmx768m')
option(value: '-Xss4m')
option(value: '-Dcom.apple.textantialiasing=true')
option(value: '-Dcom.apple.antialiasing=true')
option(value: '-Djava.library.path=$APP_ROOT/Contents/Java')
}
}
}
osxApp.mustRunAfter(copySubProjectFiles)
task zipOSXApp(dependsOn: osxApp, type: Zip) {
from 'build/tmp/MapTool-' + getVersionName() + '.app'
into 'MapTool-' + getVersionName() + '.app'
baseName = 'maptool-' + getVersionName() + '-osx'
destinationDir new File(projectDir, 'build')
outputs.upToDateWhen {
false
}
}
task release() {
println 'Creating Release'
}
release.dependsOn += zipRelease
release.dependsOn += zipOSXApp