-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
49 lines (40 loc) · 1.1 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
group 'im.abe'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
allprojects {
repositories {
mavenCentral()
}
apply plugin: 'java'
sourceCompatibility = 1.8
}
project(':od-reader') {
dependencies {
compile 'org.apache.pdfbox:pdfbox:2.0.3'
compile 'com.google.guava:guava:18.0'
compile 'org.apache.commons:commons-csv:1.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.6.1'
compile 'org.apache.jena:apache-jena-libs:3.0.0'
compile('org.apache.poi:poi:3.14')
compile('org.apache.poi:poi-ooxml:3.14')
compile('org.apache.poi:poi-ooxml-schemas:3.14')
compile project(':xmpcore')
testCompile group: 'junit', name: 'junit', version: '4.11'
}
}
project(':od-frontend') {
apply plugin: 'application'
mainClassName = "im.abe.pdfdata.frontend.PDFData"
dependencies {
compile 'com.beust:jcommander:1.48'
compile project(':od-reader')
}
}
project(':od-web') {
// main settings in child build.gradle
dependencies {
compile project(':od-reader')
}
}