-
Notifications
You must be signed in to change notification settings - Fork 6
/
pom.xml
497 lines (480 loc) · 18.5 KB
/
pom.xml
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) SYSTAP, LLC 2006-2015. All rights reserved.
Contact:
SYSTAP, LLC
2501 Calvert ST NW #106
Washington, DC 20008
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Copyright 2010 by TalkingTrends (Amsterdam, The Netherlands)
--><!--
This POM is intended to support the use of bigdata(R) as an embedded
database as part of your own maven project. It declares the
dependencies for the embedded database, but does not include the
dependencies for the NanoSparqlServer or the clustered database - use
the ant build.xml file to generate and deploy those artifacts.
To install the dependencies into your local maven repository, do:
mvn clean install
If you change any of the dependencies that are published by the bigdata
project (whether because we maintain them or because they are not readily
available) then you need to publish the updated dependencies to the maven
repository. There are commands in comment blocks in this POM that will
deploy those dependencies. Be sure to update the version numbers in the
commands first!
See https://sourceforge.net/apps/mediawiki/bigdata/index.php?title=ReleaseGuide
for information on publishing maven releases and snapshots for bigdata and its
dependencies.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
>
<modelVersion>4.0.0</modelVersion>
<groupId>com.bigdata</groupId>
<artifactId>bigdata</artifactId>
<version>1.5.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>bigdata(R)</name>
<description>Bigdata(R) Maven Build</description>
<url>http://www.systap.com/bigdata.htm</url>
<organization>
<name>SYSTAP, LLC</name>
<url>http://www.systap.com/</url>
</organization>
<inceptionYear>2006</inceptionYear>
<licenses>
<license>
<name>GNU General Public License Version 2 (GPLv2)</name>
<url>http://www.gnu.org/licenses/gpl-2.0.html</url>
</license>
</licenses>
<properties>
<!-- -->
<!-- Note: Dependency versions are declared in build.properties -->
<!-- This is a copy of that information. However, there are a -->
<!-- few subtle differences. See build.properties for details. -->
<!-- -->
<icu.version>4.8</icu.version>
<zookeeper.version>3.4.5</zookeeper.version>
<sesame.version>2.7.13</sesame.version>
<slf4j.version>1.6.1</slf4j.version>
<jetty.version>9.2.3.v20140905</jetty.version>
<servlet.version>3.1.0</servlet.version>
<lucene.version>3.0.0</lucene.version>
<apache.commons_codec.version>1.4</apache.commons_codec.version>
<apache.commons_fileupload.version>1.3.1</apache.commons_fileupload.version>
<apache.commons_io.version>2.1</apache.commons_io.version>
<apache.commons_logging.version>1.1.1</apache.commons_logging.version>
<apache.httpclient.version>4.1.3</apache.httpclient.version>
<apache.httpclient_cache.version>4.1.3</apache.httpclient_cache.version>
<apache.httpcore.version>4.1.4</apache.httpcore.version>
<apache.httpmime.version>4.1.3</apache.httpmime.version>
<colt.version>1.2.0</colt.version>
<highscalelib.version>1.1.2</highscalelib.version>
<log4j.version>1.2.17</log4j.version>
<fastutil.version>6.5.16</fastutil.version>
<dsiutils.version>1.0.6-020610</dsiutils.version>
<lgplutils.version>1.0.7-270114</lgplutils.version>
<bigdata.ganglia.version>1.0.4</bigdata.ganglia.version>
<jackson.version>2.2.3</jackson.version>
<blueprints.version>2.5.0</blueprints.version>
<jettison.version>1.3.3</jettison.version>
<rexster.version>2.5.0</rexster.version>
</properties>
<!-- TODO Can we declare the versions of the dependencies here as
properties and have them be substituted in for us? Can we pick
up those dependency versions from a properties file so we can
share the version declarations in build.properties? If we do
that, will the version numbers be filled in when this POM is
deployed to the systap repository?
TODO Add ant target to deploy the dependencies that we use that
are not widely (publicly) available to the systap repository.
-->
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
<phase>process-resources</phase>
<configuration>
<target>
<property name="build.ver" value="${project.version}"/>
<property name="build.ver.osgi" value="${project.version}"/>
<property name="snapshot" value="false"/>
<ant antfile="build.xml" target="clean"/>
<ant antfile="build.xml" target="jar"/>
</target>
</configuration>
</execution>
<execution>
<id>attach-artifact</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<attachartifact file="ant-build/bigdata-${project.version}.jar" type="jar"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<!-- Enabling the use of SSH. -->
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
</build>
<distributionManagement>
<repository>
<id>bigdata.releases</id>
<name>bigdata(R) releases</name>
<url>scpexe://www.systap.com/srv/www/htdocs/systap.com/maven/releases</url>
</repository>
<snapshotRepository>
<id>bigdata.snapshots</id>
<name>bigdata(R) snapshots</name>
<url>scpexe://www.systap.com/srv/www/htdocs/systap.com/maven/snapshots</url>
<uniqueVersion>true</uniqueVersion>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>bigdata.releases</id>
<url>http://www.systap.com/maven/releases/</url>
</repository>
<!--
<repository>
<id>jetty.releases</id>
<url>https://oss.sonatype.org/content/groups/jetty/</url>
</repository>
-->
</repositories>
<!-- This declares the basic dependencies that you need to use -->
<!-- bigdata as an embedded database. Use ant (build.xml) for -->
<!-- NanoSparqlServer or cluster builds and deployments. -->
<dependencies>
<!-- -->
<!-- artifacts already present in public repositories -->
<!-- -->
<dependency>
<groupId>com.github.stephenc.high-scale-lib</groupId>
<artifactId>high-scale-lib</artifactId>
<version>${highscalelib.version}</version>
</dependency>
<dependency>
<groupId>colt</groupId>
<artifactId>colt</artifactId>
<version>${colt.version}</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>${lucene.version}</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers</artifactId>
<version>${lucene.version}</version>
</dependency>
<dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
<version>${icu.version}</version>
</dependency>
<dependency>
<!-- log4j is the primary logger for bigdata. -->
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
<!-- There is a bug with log4j 1.2.15 where it has a lot -->
<!-- of dependencies that we do not need in its POM. The -->
<!-- exclusions are only necessary with that version. -->
<!--
<exclusions>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
</exclusions>
-->
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${apache.httpclient.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-cache</artifactId>
<version>${apache.httpclient_cache.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>${apache.httpcore.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>${apache.httpmime.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${apache.commons_codec.version}</version>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>${apache.commons_fileupload.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${apache.commons_io.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${apache.commons_logging.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints-core</artifactId>
<version>${blueprints.version}</version>
</dependency>
<dependency>
<groupId>com.tinkerpop.rexster</groupId>
<artifactId>rexster-core</artifactId>
<version>${rexster.version}</version>
</dependency>
<!-- -->
<!-- artifacts that we publish (because they are not readily -->
<!-- available) but we do not maintain. -->
<!-- -->
<dependency>
<!-- fastutil.fastutil & it.unimi.dsi.fastutil from central have different versions -->
<!-- fastutil 6.1.0+ is on maven central. -->
<!--
mvn deploy:deploy-file \
-DgroupId=it.unimi \
-DartifactId=fastutil \
-Dversion=6.5.16 \
-Dpackaging=jar \
-DrepositoryId=bigdata.releases \
-Durl=scpexe://www.systap.com/srv/www/htdocs/systap.com/maven/releases/ \
-Dfile=bigdata/lib/unimi/fastutil-6.5.16.jar
-->
<groupId>it.unimi</groupId>
<artifactId>fastutil</artifactId>
<version>${fastutil.version}</version>
</dependency>
<dependency>
<!-- This ICU dependency is not widely available. -->
<!--
mvn deploy:deploy-file \
-DgroupId=com.ibm.icu \
-DartifactId=icu4j-charset \
-Dversion=4.8 \
-Dpackaging=jar \
-DrepositoryId=bigdata.releases \
-Durl=scpexe://www.systap.com/srv/www/htdocs/systap.com/maven/releases/ \
-Dfile=bigdata/lib/icu/icu4j-charset-4.8.jar
-->
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j-charset</artifactId>
<version>${icu.version}</version>
</dependency>
<dependency>
<!-- sesame-runtime will pull in the various openrdf compoents. -->
<groupId>org.openrdf.sesame</groupId>
<artifactId>sesame-runtime</artifactId>
<version>${sesame.version}</version>
</dependency>
<!-- -->
<!-- artifacts maintained and published by the bigdata project -->
<dependency>
<!--
mvn deploy:deploy-file \
-DgroupId=com.bigdata \
-DartifactId=bigdata-ganglia \
-Dversion=1.0.4 \
-Dpackaging=jar \
-DrepositoryId=bigdata.releases \
-Durl=scpexe://www.systap.com/srv/www/htdocs/systap.com/maven/releases/ \
-Dfile=bigdata/lib/bigdata-ganglia-1.0.4.jar
-->
<groupId>com.bigdata</groupId>
<artifactId>bigdata-ganglia</artifactId>
<version>${bigdata.ganglia.version}</version>
<optional>true</optional>
</dependency>
<!--
mvn deploy:deploy-file \
-DgroupId=com.bigdata \
-DartifactId=dsi-utils \
-Dversion=1.0.6-020610 \
-Dpackaging=jar \
-DrepositoryId=bigdata.releases \
-Durl=scpexe://www.systap.com/srv/www/htdocs/systap.com/maven/releases/ \
-Dfile=bigdata/lib/dsi-utils-1.0.6-020610.jar
-->
<dependency>
<groupId>com.bigdata</groupId>
<artifactId>dsi-utils</artifactId>
<version>${dsiutils.version}</version>
</dependency>
<dependency>
<!--
mvn deploy:deploy-file \
-DgroupId=com.bigdata \
-DartifactId=lgpl-utils \
-Dversion=1.0.7-270114 \
-Dpackaging=jar \
-DrepositoryId=bigdata.releases \
-Durl=scpexe://www.systap.com/srv/www/htdocs/systap.com/maven/releases/ \
-Dfile=bigdata/lib/lgpl-utils-1.0.7-270114.jar
-->
<groupId>com.bigdata</groupId>
<artifactId>lgpl-utils</artifactId>
<version>${lgplutils.version}</version>
</dependency>
<!-- jetty dependencies for the REST API
jetty-continuation
jetty-http
jetty-io
jetty-jmx
jetty-jndi
jetty-server
jetty-util
jetty-webapp
jetty-servlet
jetty-security
jetty-xml
jetty-rewrite
jetty-proxy
servlet-api
javax.servlet-api
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-continuation</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-http</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-io</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jndi</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-security</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-xml</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-rewrite</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-proxy</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${servlet-version}</version>
<scope>provided</scope>
</dependency>
-->
</dependencies>
</project>