Strabon
view pom.xml @ 112:b180a96d33b0
Replaced the ${project.version} declaration
author | Kostis Kyzirakos <kkyzir@di.uoa.gr> |
---|---|
date | Wed Apr 11 15:20:56 2012 +0300 (2012-04-11) |
parents | 46100d1fac09 |
children | 2338da456072 |
line source
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
6 <groupId>eu.earthobservatory</groupId>
7 <artifactId>strabon</artifactId>
8 <version>3.1.8-SNAPSHOT</version>
9 <packaging>pom</packaging>
11 <parent>
12 <groupId>org.openrdf</groupId>
13 <artifactId>openrdf-root-pom</artifactId>
14 <version>5</version>
15 </parent>
17 <name>Strabon</name>
18 <description>Strabon is a storage and query evaluation module for stRDF/stSPARQL.</description>
19 <url>http://www.strabon.di.uoa.gr/</url>
20 <inceptionYear>2008</inceptionYear>
22 <modules>
23 <module>evaluation</module>
24 <module>runtime</module>
25 <module>postgis</module>
26 <module>monetdb</module>
27 <module>generaldb</module>
28 <module>resultio</module>
29 <module>endpoint</module>
30 </modules>
32 <properties>
33 <eu.earthobservatory.version>3.1.8-SNAPSHOT</eu.earthobservatory.version>
34 <sesame.version>2.6.3</sesame.version>
35 <aduna.appbase.version>3.5.0</aduna.appbase.version>
36 <slf4j.version>1.6.1</slf4j.version>
37 <spring.version>2.5.6</spring.version>
38 <jts.version>1.8</jts.version>
39 <geotools.version>2.7.4</geotools.version>
40 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41 <project.build.targetEncoding>UTF-8</project.build.targetEncoding>
42 </properties>
44 <dependencyManagement>
45 <dependencies>
46 <!-- Strabon dependencies -->
47 <dependency>
48 <groupId>org.openrdf.sesame</groupId>
49 <artifactId>sesame-queryalgebra-evaluation-spatial</artifactId>
50 <version>${eu.earthobservatory.version}</version>
51 </dependency>
53 <dependency>
54 <groupId>org.openrdf.sesame</groupId>
55 <artifactId>sesame-queryresultio-sparqlxml-spatial</artifactId>
56 <version>${eu.earthobservatory.version}</version>
57 </dependency>
59 <dependency>
60 <groupId>org.openrdf.sesame</groupId>
61 <artifactId>sesame-sail-generaldb</artifactId>
62 <version>${eu.earthobservatory.version}</version>
63 </dependency>
65 <dependency>
66 <groupId>org.openrdf.sesame</groupId>
67 <artifactId>sesame-sail-monetdb</artifactId>
68 <version>${eu.earthobservatory.version}</version>
69 </dependency>
71 <dependency>
72 <groupId>org.openrdf.sesame</groupId>
73 <artifactId>strabon-runtime</artifactId>
74 <version>${eu.earthobservatory.version}</version>
75 </dependency>
77 <dependency>
78 <groupId>org.openrdf.sesame</groupId>
79 <artifactId>strabon-endpoint</artifactId>
80 <version>${eu.earthobservatory.version}</version>
81 </dependency>
83 <dependency>
84 <groupId>org.openrdf.sesame</groupId>
85 <artifactId>sesame-sail-postgis</artifactId>
86 <version>${eu.earthobservatory.version}</version>
87 </dependency>
89 <!-- Sesame dependencies -->
90 <dependency>
91 <groupId>org.openrdf.sesame</groupId>
92 <artifactId>sesame-repository-sail</artifactId>
93 <version>${sesame.version}</version>
94 </dependency>
96 <dependency>
97 <groupId>eu.earthobservatory</groupId>
98 <artifactId>strabon-runtime</artifactId>
99 <version>${eu.earthobservatory.version}</version>
100 </dependency>
102 <dependency>
103 <groupId>org.openrdf.sesame</groupId>
104 <artifactId>sesame-queryalgebra</artifactId>
105 <version>${sesame.version}</version>
106 </dependency>
108 <dependency>
109 <groupId>org.openrdf.sesame</groupId>
110 <artifactId>sesame-queryalgebra-evaluation</artifactId>
111 <version>${sesame.version}</version>
112 </dependency>
114 <dependency>
115 <groupId>org.openrdf.sesame</groupId>
116 <artifactId>sesame-queryalgebra-model</artifactId>
117 <version>${sesame.version}</version>
118 </dependency>
120 <dependency>
121 <groupId>org.openrdf.sesame</groupId>
122 <artifactId>sesame-queryparser-api</artifactId>
123 <version>${sesame.version}</version>
124 </dependency>
126 <dependency>
127 <groupId>org.openrdf.sesame</groupId>
128 <artifactId>sesame-queryparser-sparql</artifactId>
129 <version>${sesame.version}</version>
130 </dependency>
132 <dependency>
133 <groupId>org.openrdf.sesame</groupId>
134 <artifactId>sesame-model</artifactId>
135 <version>${sesame.version}</version>
136 </dependency>
138 <dependency>
139 <groupId>org.openrdf.sesame</groupId>
140 <artifactId>sesame-sail-api</artifactId>
141 <version>${sesame.version}</version>
142 </dependency>
144 <dependency>
145 <groupId>org.openrdf.sesame</groupId>
146 <artifactId>sesame-query</artifactId>
147 <version>${sesame.version}</version>
148 </dependency>
150 <dependency>
151 <groupId>org.openrdf.sesame</groupId>
152 <artifactId>sesame-sail-rdbms</artifactId>
153 <version>${sesame.version}</version>
154 </dependency>
156 <dependency>
157 <groupId>org.openrdf.sesame</groupId>
158 <artifactId>sesame-repository-sparql</artifactId>
159 <version>${sesame.version}</version>
160 </dependency>
162 <!-- Aduna Commons -->
163 <dependency>
164 <groupId>info.aduna.appbase</groupId>
165 <artifactId>aduna-appbase</artifactId>
166 <version>${aduna.appbase.version}</version>
167 <type>pom</type>
168 </dependency>
170 <dependency>
171 <groupId>info.aduna.commons</groupId>
172 <artifactId>aduna-commons-collections</artifactId>
173 <version>2.8.0</version>
174 </dependency>
176 <dependency>
177 <groupId>info.aduna.commons</groupId>
178 <artifactId>aduna-commons-concurrent</artifactId>
179 <version>2.7.0</version>
180 </dependency>
182 <dependency>
183 <groupId>info.aduna.commons</groupId>
184 <artifactId>aduna-commons-i18n</artifactId>
185 <version>1.4.0</version>
186 </dependency>
188 <dependency>
189 <groupId>info.aduna.commons</groupId>
190 <artifactId>aduna-commons-iteration</artifactId>
191 <version>2.10.0</version>
192 </dependency>
194 <dependency>
195 <groupId>info.aduna.commons</groupId>
196 <artifactId>aduna-commons-net-http-server-embedded</artifactId>
197 <version>2.5.0</version>
198 </dependency>
200 <!-- RIO -->
201 <dependency>
202 <groupId>org.openrdf.sesame</groupId>
203 <artifactId>sesame-rio-rdfxml</artifactId>
204 <version>${sesame.version}</version>
205 </dependency>
207 <dependency>
208 <groupId>org.openrdf.sesame</groupId>
209 <artifactId>sesame-rio-ntriples</artifactId>
210 <version>${sesame.version}</version>
211 </dependency>
213 <dependency>
214 <groupId>org.openrdf.sesame</groupId>
215 <artifactId>sesame-rio-turtle</artifactId>
216 <version>${sesame.version}</version>
217 </dependency>
219 <dependency>
220 <groupId>org.openrdf.sesame</groupId>
221 <artifactId>sesame-rio-trig</artifactId>
222 <version>${sesame.version}</version>
223 </dependency>
225 <dependency>
226 <groupId>org.openrdf.sesame</groupId>
227 <artifactId>sesame-rio-trix</artifactId>
228 <version>${sesame.version}</version>
229 </dependency>
231 <dependency>
232 <groupId>org.openrdf.sesame</groupId>
233 <artifactId>sesame-rio-n3</artifactId>
234 <version>${sesame.version}</version>
235 </dependency>
237 <dependency>
238 <groupId>org.openrdf.sesame</groupId>
239 <artifactId>sesame-rio-binary</artifactId>
240 <version>${sesame.version}</version>
241 </dependency>
243 <!-- GeoTools -->
244 <dependency>
245 <groupId>org.geotools.xsd</groupId>
246 <artifactId>gt-xsd-kml</artifactId>
247 <version>${geotools.version}</version>
248 </dependency>
250 <dependency>
251 <groupId>org.geotools</groupId>
252 <artifactId>gt-xml</artifactId>
253 <version>${geotools.version}</version>
254 </dependency>
256 <dependency>
257 <groupId>org.geotools</groupId>
258 <artifactId>gt-epsg-hsql</artifactId>
259 <version>${geotools.version}</version>
260 </dependency>
261 <dependency>
262 <groupId>org.geotools</groupId>
263 <artifactId>gt-shapefile</artifactId>
264 <version>${geotools.version}</version>
265 </dependency>
267 <dependency>
268 <groupId>org.geotools</groupId>
269 <artifactId>gt-referencing</artifactId>
270 <version>${geotools.version}</version>
271 </dependency>
273 <dependency>
274 <groupId>org.geotools</groupId>
275 <artifactId>gt-jts-wrapper</artifactId>
276 <version>${geotools.version}</version>
277 </dependency>
279 <dependency>
280 <groupId>org.geotools</groupId>
281 <artifactId>gt-opengis</artifactId>
282 <version>${geotools.version}</version>
283 </dependency>
285 <!-- JTS -->
286 <dependency>
287 <groupId>com.vividsolutions</groupId>
288 <artifactId>jts</artifactId>
289 <version>${jts.version}</version>
290 <type>jar</type>
291 </dependency>
293 <!-- JDBC Drivers -->
294 <dependency>
295 <groupId>monetdb</groupId>
296 <artifactId>jdbcclient</artifactId>
297 <version>3.4.0</version>
298 </dependency>
300 <dependency>
301 <groupId>postgresql</groupId>
302 <artifactId>postgresql</artifactId>
303 <version>9.0-801.jdbc4</version>
304 </dependency>
306 <dependency>
307 <groupId>mysql</groupId>
308 <artifactId>mysql-connector-java</artifactId>
309 <version>5.1.15</version>
310 </dependency>
312 <!-- SLF4J -->
313 <dependency>
314 <groupId>org.slf4j</groupId>
315 <artifactId>slf4j-api</artifactId>
316 <version>${slf4j.version}</version>
317 </dependency>
319 <dependency>
320 <groupId>org.slf4j</groupId>
321 <artifactId>slf4j-simple</artifactId>
322 <version>${slf4j.version}</version>
323 </dependency>
325 <dependency>
326 <groupId>net.sf</groupId>
327 <artifactId>log4jdbc4</artifactId>
328 <version>1.2</version>
329 </dependency>
331 <!-- Apache Commons -->
332 <dependency>
333 <groupId>commons-cli</groupId>
334 <artifactId>commons-cli</artifactId>
335 <version>1.2</version>
336 </dependency>
338 <dependency>
339 <groupId>commons-dbcp</groupId>
340 <artifactId>commons-dbcp</artifactId>
341 <version>1.3</version>
342 </dependency>
344 <dependency>
345 <groupId>commons-fileupload</groupId>
346 <artifactId>commons-fileupload</artifactId>
347 <version>1.2.1</version>
348 </dependency>
350 <dependency>
351 <groupId>commons-io</groupId>
352 <artifactId>commons-io</artifactId>
354 <version>1.3.2</version>
355 </dependency>
357 <dependency>
358 <groupId>commons-httpclient</groupId>
359 <artifactId>commons-httpclient</artifactId>
360 <version>3.1</version>
361 <exclusions>
362 <exclusion>
363 <groupId>commons-logging</groupId>
364 <artifactId>commons-logging</artifactId>
365 </exclusion>
366 <exclusion>
367 <!-- httpclient includes older codec -->
368 <groupId>commons-codec</groupId>
369 <artifactId>commons-codec</artifactId>
370 </exclusion>
371 </exclusions>
372 </dependency>
374 <dependency>
375 <groupId>commons-codec</groupId>
376 <artifactId>commons-codec</artifactId>
377 <version>1.4</version>
378 <scope>runtime</scope>
379 </dependency>
381 <dependency>
382 <groupId>commons-validator</groupId>
383 <artifactId>commons-validator</artifactId>
384 <version>1.3.1</version>
385 </dependency>
387 <!-- Spring framework -->
388 <dependency>
389 <groupId>org.springframework</groupId>
390 <artifactId>spring-aop</artifactId>
391 <version>${spring.version}</version>
392 <exclusions>
393 <exclusion>
394 <groupId>commons-logging</groupId>
395 <artifactId>commons-logging</artifactId>
396 </exclusion>
397 </exclusions>
398 </dependency>
400 <dependency>
401 <groupId>org.springframework</groupId>
402 <artifactId>spring-webmvc</artifactId>
403 <version>${spring.version}</version>
404 <exclusions>
405 <exclusion>
406 <groupId>commons-logging</groupId>
407 <artifactId>commons-logging</artifactId>
408 </exclusion>
409 </exclusions>
410 </dependency>
412 <!-- Apache CXF framework -->
413 <dependency>
414 <groupId>org.apache.cxf</groupId>
415 <artifactId>cxf-rt-frontend-jaxws</artifactId>
416 <version>2.2.5</version>
417 </dependency>
419 <dependency>
420 <groupId>org.apache.cxf</groupId>
421 <artifactId>cxf-rt-transports-http</artifactId>
422 <version>2.2.5</version>
423 </dependency>
425 <dependency>
426 <groupId>org.apache.cxf</groupId>
427 <artifactId>cxf-rt-transports-http-jetty</artifactId>
428 <version>2.2.5</version>
429 </dependency>
431 <!-- Compliance tests -->
432 <dependency>
433 <groupId>edu.lehigh.swat.bench</groupId>
434 <artifactId>uba</artifactId>
435 <version>1.7</version>
436 </dependency>
438 <dependency>
439 <groupId>edu.lehigh.swat.bench</groupId>
440 <artifactId>ubt</artifactId>
441 <version>1.1</version>
442 </dependency>
444 <!-- Testing: JUnit -->
445 <dependency>
446 <groupId>junit</groupId>
447 <artifactId>junit</artifactId>
448 <version>4.7</version>
449 <scope>test</scope>
450 </dependency>
452 <!-- Various -->
453 <dependency>
454 <groupId>cglib</groupId>
455 <artifactId>cglib</artifactId>
456 <version>2.2</version>
457 </dependency>
459 <dependency>
460 <groupId>javax</groupId>
461 <artifactId>javaee-web-api</artifactId>
462 <version>6.0</version>
463 <scope>provided</scope>
464 </dependency>
465 </dependencies>
466 </dependencyManagement>
468 <build>
469 <pluginManagement>
470 <plugins>
471 <plugin>
472 <groupId>org.apache.maven.plugins</groupId>
473 <artifactId>maven-assembly-plugin</artifactId>
474 <version>2.3</version>
475 </plugin>
477 <!-- The following plugin is for being able to run tomcat6/7:run -->
478 <!--
479 <plugin>
480 <groupId>org.apache.tomcat.maven</groupId>
481 <artifactId>tomcat7-maven-plugin</artifactId>
482 <version>2.0-SNAPSHOT</version>
483 </plugin>
484 -->
485 </plugins>
486 </pluginManagement>
488 <plugins>
489 <plugin>
490 <groupId>org.apache.maven.plugins</groupId>
491 <artifactId>maven-compiler-plugin</artifactId>
492 <version>2.3.2</version>
493 <configuration>
494 <source>1.6</source>
495 <target>1.6</target>
496 <encoding>utf8</encoding>
497 </configuration>
498 </plugin>
499 <!-- <plugin> <groupId>ch.elca.el4j.maven.plugins</groupId> <artifactId>maven-depgraph-plugin</artifactId>
500 <configuration> <outDir>target/site/images</outDir> <dotFile>${pom.artifactId}.dot</dotFile>
501 <outFile>${pom.artifactId}.png</outFile> <filterEmptyArtifacts>true</filterEmptyArtifacts>
502 </configuration> </plugin> -->
503 <plugin>
504 <artifactId>maven-release-plugin</artifactId>
505 <version>2.2.2</version>
506 <configuration>
507 <tagNameFormat>v@{project.version}</tagNameFormat>
508 <autoVersionSubmodules>true</autoVersionSubmodules>
509 </configuration>
510 </plugin>
511 </plugins>
512 </build>
514 <reporting>
515 <plugins>
516 <plugin>
517 <groupId>org.apache.maven.plugins</groupId>
518 <artifactId>maven-javadoc-plugin</artifactId>
519 <version>2.8.1</version>
520 <configuration>
521 <source>1.6</source>
522 <encoding>utf8</encoding>
523 </configuration>
524 </plugin>
525 </plugins>
526 </reporting>
529 <!-- <pluginRepositories> <pluginRepository> <id>elca-services</id> <url>http://el4.elca-services.ch/el4j/maven2repository</url>
530 <releases> <enabled>true</enabled> </releases> </pluginRepository> </pluginRepositories> -->
532 <pluginRepositories>
533 <!-- The following repository is for being able to run tomcat7:run -->
534 <!--
535 <pluginRepository>
536 <id>apache.snapshots</id>
537 <name>Apache Snapshots</name>
538 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
539 <releases>
540 <enabled>false</enabled>
541 </releases>
542 <snapshots>
543 <enabled>true</enabled>
544 </snapshots>
545 </pluginRepository>
546 -->
547 </pluginRepositories>
549 <scm>
550 <connection>scm:hg:ssh://hg.strabon.di.uoa.gr//opt/hg/Strabon/</connection>
551 <developerConnection>scm:hg:ssh://hg.strabon.di.uoa.gr//opt/hg/Strabon/</developerConnection>
552 <url>http://hg.strabon.di.uoa.gr/Strabon/</url>
553 </scm>
555 <repositories>
557 <repository>
558 <releases>
559 <enabled>true</enabled>
560 </releases>
561 <snapshots>
562 <enabled>false</enabled>
563 </snapshots>
564 <id>strabon.testing</id>
565 <name>Strabon - maven repository</name>
566 <url>http://maven.strabon.di.uoa.gr/content/repositories/testing</url>
567 </repository>
569 <repository>
570 <releases>
571 <enabled>true</enabled>
572 </releases>
573 <snapshots>
574 <enabled>false</enabled>
575 </snapshots>
576 <id>strabon</id>
577 <name>Strabon - maven repository</name>
578 <url>http://maven.strabon.di.uoa.gr/content/repositories/releases</url>
579 </repository>
580 <repository>
581 <releases>
582 <enabled>false</enabled>
583 </releases>
584 <snapshots>
585 <enabled>true</enabled>
586 </snapshots>
587 <id>strabon.snapshot</id>
588 <name>Strabon - maven repository - snapshots</name>
589 <url>http://maven.strabon.di.uoa.gr/content/repositories/snapshots</url>
590 </repository>
593 <repository>
594 <releases>
595 <enabled>true</enabled>
596 </releases>
597 <snapshots>
598 <enabled>false</enabled>
599 </snapshots>
600 <id>aduna-opensource.releases</id>
601 <name>Aduna Open Source - Maven releases</name>
602 <url>http://repo.aduna-software.org/maven2/releases</url>
603 </repository>
604 <repository>
605 <releases>
606 <enabled>false</enabled>
607 </releases>
608 <snapshots>
609 <enabled>true</enabled>
610 </snapshots>
611 <id>aduna-opensource.snapshots</id>
612 <name>Aduna Open Source - Maven snapshots</name>
613 <url>http://repo.aduna-software.org/maven2/snapshots</url>
614 </repository>
615 <repository>
616 <snapshots>
617 <enabled>true</enabled>
618 </snapshots>
619 <id>opengeo</id>
620 <name>OpenGeo Maven Repository</name>
621 <url>http://download.osgeo.org/webdav/geotools/</url>
622 </repository>
623 </repositories>
625 <distributionManagement>
626 <repository>
627 <id>strabon</id>
628 <name>Strabon maven repo</name>
629 <url>http://maven.strabon.di.uoa.gr/content/repositories/releases</url>
630 </repository>
631 <snapshotRepository>
632 <id>strabon.snapshot</id>
633 <name>Strabon maven repo</name>
634 <url>http://maven.strabon.di.uoa.gr/content/repositories/snapshots</url>
635 </snapshotRepository>
636 </distributionManagement>
637 </project>