forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
400 lines (323 loc) · 12.3 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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
import org.gradle.internal.os.OperatingSystem
// to update the gradle wrapper, execute ./gradlew wrapper --gradle-version 3.0
buildscript {
repositories {
maven {
url 'http://maven.ej-technologies.com/repository'
}
}
dependencies {
classpath 'com.github.edwgiz:maven-shade-plugin.log4j2-cachefile-transformer:2.1'
}
}
plugins {
id "com.install4j.gradle" version "6.1.3"
id 'com.github.johnrengelman.shadow' version '1.2.3'
// If this is updated to 0.0.9, check configurations.errorprone
id "net.ltgt.errorprone" version "0.0.8"
id 'me.champeau.gradle.jmh' version '0.3.1'
}
apply plugin: "java"
apply plugin: "application"
apply plugin: "project-report"
apply plugin: 'jacoco'
apply plugin: 'install4j'
apply plugin: 'me.champeau.gradle.jmh'
apply plugin: 'checkstyle'
apply from: 'eclipse.gradle'
apply from: 'localization.gradle'
apply from: 'xjc.gradle'
group = "net.sf.jabref"
version = "3.7dev"
project.ext.threeDotVersion = "3.6.0.1"
project.ext.install4jDir = hasProperty("install4jDir") ? getProperty("install4jDir") : (OperatingSystem.current().isWindows() ? 'C:/Program Files/install4j6' : 'install4j6')
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName = "net.sf.jabref.JabRefMain"
install4j {
installDir = file(project.ext.install4jDir)
}
repositories {
jcenter()
maven {
url 'https://oss.sonatype.org/content/groups/public'
}
}
configurations {
antlr3
antlr4
databaseTestCompile.extendsFrom testCompile
databaseTestRuntime.extendsFrom testRuntime
integrationTestCompile.extendsFrom testCompile
integrationTestRuntime.extendsFrom testRuntime
}
dependencies {
compile 'com.jgoodies:jgoodies-common:1.8.1'
compile 'com.jgoodies:jgoodies-forms:1.9.0'
compile 'com.jgoodies:jgoodies-looks:2.7.0'
compile 'org.swinglabs:swingx:1.6.1' // do not update, 1.6.5.1 is broken
// update to 2.0.x is not possible - see https://github.com/JabRef/jabref/pull/1096#issuecomment-208857517
compile 'org.apache.pdfbox:pdfbox:1.8.12'
compile 'org.apache.pdfbox:fontbox:1.8.12'
compile 'org.apache.pdfbox:jempbox:1.8.12'
// required for reading write-protected PDFs - see https://github.com/JabRef/jabref/pull/942#issuecomment-209252635
compile 'org.bouncycastle:bcprov-jdk15on:1.55'
compile 'commons-cli:commons-cli:1.3.1'
compile 'org.openoffice:juh:4.1.2'
compile 'org.openoffice:jurt:4.1.2'
compile 'org.openoffice:ridl:4.1.2'
compile 'org.openoffice:unoil:4.1.2'
compile 'com.googlecode.java-diff-utils:diffutils:1.3.0'
antlr3 'org.antlr:antlr:3.5.2'
compile 'org.antlr:antlr-runtime:3.5.2'
antlr4 'org.antlr:antlr4:4.5.3'
compile 'org.antlr:antlr4-runtime:4.5.3'
// VersionEye states that 6.0.4 is the most recent version, but http://dev.mysql.com/downloads/connector/j/ shows that as "Development Release"
compile 'mysql:mysql-connector-java:5.1.39'
compile 'com.impossibl.pgjdbc-ng:pgjdbc-ng:0.6'
compile 'net.java.dev.glazedlists:glazedlists_java15:1.9.1'
compile fileTree(dir: 'lib', includes: ['*.jar'])
compile 'com.google.guava:guava:19.0'
compile 'commons-logging:commons-logging:1.2'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'org.jsoup:jsoup:1.9.2'
compile 'com.mashape.unirest:unirest-java:1.4.9'
compile 'info.debatty:java-string-similarity:0.18'
compile 'org.apache.logging.log4j:log4j-jcl:2.7'
compile 'org.apache.logging.log4j:log4j-api:2.7'
compile 'org.apache.logging.log4j:log4j-core:2.7'
compile 'org.xmlunit:xmlunit-core:2.2.1'
compile 'org.xmlunit:xmlunit-matchers:2.2.1'
// need to use snapshots as the stable version is from 2013 and doesn't support v1.0.1 CitationStyles
compile 'org.citationstyles:styles:1.0.1-SNAPSHOT'
compile 'org.citationstyles:locales:1.0.1-SNAPSHOT'
compile 'de.undercouch:citeproc-java:1.0.0-SNAPSHOT'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'com.github.tomakehurst:wiremock:2.1.12'
testCompile 'org.assertj:assertj-swing-junit:3.4.0'
}
sourceSets {
main {
java {
// remove "src/oracleMock" if ojdbc.jar is available
srcDirs = ["src/main/java", "src/main/gen", "src/oracleMock"]
}
}
databaseTest {
java {
compileClasspath += main.output + test.output
runtimeClasspath += main.output + test.output
}
}
integrationTest {
java {
compileClasspath += main.output + test.output
runtimeClasspath += main.output + test.output
srcDir file('src/integrationTest/java')
}
resources.srcDir file('src/integrationTest/resources')
}
}
processResources {
filesMatching("build.properties") {
expand(version: project.version,
"year": String.valueOf(Calendar.getInstance().get(Calendar.YEAR)),
"authors": new File('AUTHORS').readLines().findAll { !it.startsWith("#") }.join(", "),
"developers": new File('DEVELOPERS').readLines().findAll { !it.startsWith("#") }.join(", "))
filteringCharset = 'UTF-8'
}
filteringCharset = 'UTF-8'
filesMatching("resource/**/meta.xml") {
expand version: project.version
}
}
clean {
delete "src/main/gen"
}
task generateSource(dependsOn: ["generateBstGrammarSource", "generateSearchGrammarSource"]) {
group = 'JabRef'
description 'Generates all Java source files.'
}
task generateBstGrammarSource(type: JavaExec) {
group 'JabRef'
description 'Generates BstLexer.java and BstParser.java from the Bst.g grammar file using antlr3.'
File antlrSource = file('src/main/antlr3/net/sf/jabref/bst/Bst.g')
inputs.file antlrSource
outputs.file file('src/main/gen/net/sf/jabref/logic/bst/BstLexer.java')
outputs.file file('src/main/gen/net/sf/jabref/logic/bst/BstParser.java')
main = 'org.antlr.Tool'
classpath = configurations.antlr3
args = ["-o", file('src/main/gen/net/sf/jabref/logic/bst/'), antlrSource]
}
task generateSearchGrammarSource(type: JavaExec) {
String grammarFile = "Search"
group 'JabRef'
description "Generates java files for ${grammarFile}.g antlr4."
String packagePath = "net/sf/jabref/search"
File antlrPath = file("src/main/antlr4")
File genPath = file("src/main/gen")
File antlrSource = file("$antlrPath/$packagePath/${grammarFile}.g4")
File destinationDir = file("$genPath/$packagePath")
inputs.file antlrSource
outputs.file file("$destinationDir/${grammarFile}Parser.java")
outputs.file file("$destinationDir/${grammarFile}Lexer.java")
outputs.file file("$destinationDir/${grammarFile}Visitor.java")
outputs.file file("$destinationDir/${grammarFile}BaseVisitor.java")
outputs.file file("$destinationDir/${grammarFile}.tokens")
outputs.file file("$destinationDir/${grammarFile}Lexer.tokens")
main = 'org.antlr.v4.Tool'
classpath = configurations.antlr4
args = ["-o", destinationDir, "-visitor", "-no-listener", "-package", "net.sf.jabref.search", antlrSource]
}
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << "-Xlint:none"
}
compileJava.dependsOn "generateSource"
compileTestJava {
options.encoding = 'UTF-8'
}
javadoc {
options {
encoding = 'UTF-8'
version = true
author = true
}
}
test {
testLogging {
events "failed"
exceptionFormat "full"
}
}
task copyTestResources(type: Copy) {
from "${projectDir}/src/test/resources"
into "${buildDir}/classes/test"
}
processTestResources.dependsOn copyTestResources
task databaseTest(type: Test) {
testClassesDir = sourceSets.databaseTest.output.classesDir
classpath = sourceSets.databaseTest.runtimeClasspath
}
task integrationTest(type: Test) {
testClassesDir = sourceSets.integrationTest.output.classesDir
classpath = sourceSets.integrationTest.runtimeClasspath
}
tasks.withType(Test) {
reports.html.destination = file("${reporting.baseDir}/${name}")
jacoco {
append = true
}
}
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}
shadowJar {
classifier 'fat'
transform(new com.github.jengelman.gradle.plugins.shadow.transformers.Transformer() {
// this is an adapter required for generating a fat jar with correct log4j2 output
com.github.edwgiz.mavenShadePlugin.log4j2CacheTransformer.PluginsCacheFileTransformer target = new com.github.edwgiz.mavenShadePlugin.log4j2CacheTransformer.PluginsCacheFileTransformer();
@Override
boolean canTransformResource(FileTreeElement element) {
return target.canTransformResource(element.getPath());
}
@Override
void transform(String path, InputStream is, List<com.github.jengelman.gradle.plugins.shadow.relocation.Relocator> relocators) {
target.processResource(path, is, relocators);
}
@Override
boolean hasTransformedResource() {
return target.hasTransformedResource();
}
@Override
void modifyOutputStream(org.apache.tools.zip.ZipOutputStream jos) {
target.modifyOutputStream(jos);
}
})
}
/*
* Changes project.version to VERSION--snapshot--DATE--GIT_HASH
*/
if (hasProperty('dev')) {
String command = "git log --pretty=format:%cd--%h -n 1 --date=short"
String commitInfo = ""
if (OperatingSystem.current().isWindows()) {
commitInfo = "cmd /c $command".execute().in.text
} else {
commitInfo = command.execute().in.text
}
// determine branch
command = "git symbolic-ref -q --short HEAD"
String branchName = ""
if (OperatingSystem.current().isWindows()) {
branchName = "cmd /c $command".execute().in.text
} else {
branchName = command.execute().in.text
}
// A newline is returned. Remove it. (trim())
// In the context of github, the branch name could be something like "pull/277"
// "/" is an illegal character. To be safe, all illegal filename characters are replaced by "_"
// http://stackoverflow.com/a/15075907/873282 describes the used pattern.
branchName = branchName.trim().replaceAll("[^a-zA-Z0-9.-]", "_");
// hack string
// first the date (%cd), then the branch name, and finally the commit id (%h)
String infoString = commitInfo.substring(0, 10) + "--" + branchName + "--" + commitInfo.substring(12)
project.version += "--snapshot--" + infoString
}
// has to be defined AFTER 'dev' things to have the correct project.version
task media(type: com.install4j.gradle.Install4jTask, dependsOn: "releaseJar") {
projectFile = file('jabref.install4j')
release = project.version
variables = [
versionFourDots: project.ext.threeDotVersion,
buildFileName : jar.archiveName,
version : project.version
]
doLast {
copy {
from "build/install4j"
into "build/releases"
}
}
}
checkstyle {
// do not use other packages for checkstyle, excluding gen(erated) sources
checkstyleMain.source = "src/main/java"
toolVersion = '6.17'
}
task release(dependsOn: ["media", "releaseJar"]) {
group = 'JabRef - Release'
description 'Creates a release for all target platforms.'
}
task releaseJar(dependsOn: "shadowJar") {
group = 'JabRef - Release'
description "Creates a Jar release."
doLast {
copy {
from("$buildDir/libs/JabRef-${project.version}-fat.jar")
into("$buildDir/releases")
rename { String fileName ->
fileName.replace('-fat', '')
}
}
}
}
// fetch all dependencies to speedup CircleCI build
// this is necessary until https://discuss.circleci.com/t/effective-caching-for-gradle/540 is resolved
// see http://stackoverflow.com/a/27455099/873282 for an inspiration of this task
// better solution: https://discuss.gradle.org/t/how-to-download-maven-dependencies-into-project-local-directory-and-set-eclipse-classpath/9851
task getdeps(type: Copy) {
from(configurations.compile + configurations.antlr3 + configurations.antlr4 + configurations.testCompile) {
include "*.jar"
}
into 'build/tmp/alldeps/'
}
jmh {
warmupIterations = 5
iterations = 10
fork = 2
}