forked from one2team/highcharts-serverside-export
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
163 lines (156 loc) · 6 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
apply plugin: 'java'
apply plugin: 'maven'
group = 'org.one2team'
version = '1.0.0'
description = """highcharts-serverside-export"""
sourceCompatibility = 1.6
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
def batikVer = '1.9.1'
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile(group: 'org.apache.xmlgraphics', name: 'batik-anim', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-awt-util', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'commons-logging')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-bridge', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-codec', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-css', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-dom', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-ext', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-extension', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-gui-util', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'commons-logging')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-gvt', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-parser', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'commons-logging')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-rasterizer', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'commons-logging')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-script', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-squiggle', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-svg-dom', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-svggen', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-svgpp', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'commons-logging')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-transcoder', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'commons-logging')
exclude(module: 'batik-js')
exclude(module: 'avalon-framework-api')
exclude(module: 'avalon-framework-impl')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-util', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'commons-logging')
exclude(module: 'batik-js')
}
compile(group: 'org.apache.xmlgraphics', name: 'batik-xml', version: "${batikVer}") {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'commons-logging')
exclude(module: 'batik-js')
}
compile(group: 'com.google.code.gson', name: 'gson', version: '1.4') {
exclude(module: 'xalan')
exclude(module: 'serializer')
exclude(module: 'xml-apis')
exclude(module: 'commons-logging')
}
// compile group: 'rhino', name: 'js', version: '1.7R2'
compile group: 'org.mozilla', name: 'rhino', version: '1.7.10'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.25'
}