Strabon
view pom.xml @ 865:152031be6487
merge
author | George Garbis <ggarbis@di.uoa.gr> |
---|---|
date | Wed Jan 23 12:50:41 2013 +0200 (2013-01-23) |
parents | b3e0d7415823 |
children | 74ffcfcb691d 93d1b4ce44a6 389213ce7843 |
line source
1 <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">
3 <modelVersion>4.0.0</modelVersion>
5 <groupId>eu.earthobservatory</groupId>
6 <artifactId>strabon</artifactId>
7 <version>3.2.8-SNAPSHOT</version>
8 <packaging>pom</packaging>
10 <parent>
11 <groupId>org.openrdf</groupId>
12 <artifactId>openrdf-root-pom</artifactId>
13 <version>5</version>
14 </parent>
16 <name>Strabon</name>
17 <description>Strabon is a storage and query evaluation module for stRDF/stSPARQL.</description>
18 <url>http://www.strabon.di.uoa.gr/</url>
19 <inceptionYear>2008</inceptionYear>
21 <modules>
22 <module>evaluation</module>
23 <module>runtime</module>
24 <module>postgis</module>
25 <module>monetdb</module>
26 <module>generaldb</module>
27 <module>resultio-spatial</module>
28 <module>endpoint</module>
29 <module>endpoint-client</module>
30 <module>endpoint-exec</module>
31 </modules>
33 <properties>
34 <eu.earthobservatory.version>3.2.8-SNAPSHOT</eu.earthobservatory.version>
35 <sesame.version>2.6.3</sesame.version>
36 <aduna.appbase.version>3.5.0</aduna.appbase.version>
37 <!--slf4j.version>1.5.8</slf4j.version-->
38 <slf4j.version>1.6.4</slf4j.version>
39 <spring.version>2.5.6</spring.version>
40 <jts.version>1.11</jts.version>
41 <geotools.version>2.7.4</geotools.version>
42 <ogc.tools.gml.version>3.1.1</ogc.tools.gml.version>
43 <xml.bind.version>2.1.7</xml.bind.version>
44 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
45 <project.build.targetEncoding>UTF-8</project.build.targetEncoding>
46 <skipTests>true</skipTests>
47 </properties>
49 <dependencyManagement>
50 <dependencies>
51 <!-- Strabon dependencies -->
52 <dependency>
53 <groupId>org.openrdf.sesame</groupId>
54 <artifactId>sesame-queryalgebra-evaluation-spatial</artifactId>
55 <version>${eu.earthobservatory.version}</version>
56 </dependency>
59 <!-- queryresultio-spatial dependencies-->
60 <dependency>
61 <groupId>org.openrdf.sesame</groupId>
62 <artifactId>sesame-queryresultio-spatial-api</artifactId>
63 <version>${eu.earthobservatory.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.openrdf.sesame</groupId>
67 <artifactId>sesame-queryresultio-spatial-sparqlgeojson</artifactId>
68 <version>${eu.earthobservatory.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.openrdf.sesame</groupId>
72 <artifactId>sesame-queryresultio-spatial-sparqlhtml</artifactId>
73 <version>${eu.earthobservatory.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.openrdf.sesame</groupId>
77 <artifactId>sesame-queryresultio-spatial-sparqlkml</artifactId>
78 <version>${eu.earthobservatory.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>org.openrdf.sesame</groupId>
82 <artifactId>sesame-queryresultio-spatial-sparqlxml</artifactId>
83 <version>${eu.earthobservatory.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.openrdf.sesame</groupId>
87 <artifactId>sesame-queryresultio-spatial-text</artifactId>
88 <version>${eu.earthobservatory.version}</version>
89 </dependency>
90 <!-- queryresultio-spatial dependencies-->
92 <!-- sesame queryresultio dependencies -->
93 <dependency>
94 <groupId>org.openrdf.sesame</groupId>
95 <artifactId>sesame-queryresultio-api</artifactId>
96 <version>${sesame.version}</version>
97 </dependency>
98 <dependency>
99 <groupId>org.openrdf.sesame</groupId>
100 <artifactId>sesame-queryresultio-sparqlxml</artifactId>
101 <version>${sesame.version}</version>
102 </dependency>
103 <dependency>
104 <groupId>org.openrdf.sesame</groupId>
105 <artifactId>sesame-queryresultio-text</artifactId>
106 <version>${sesame.version}</version>
107 </dependency>
108 <!-- sesame queryresultio dependencies -->
110 <dependency>
111 <groupId>org.openrdf.sesame</groupId>
112 <artifactId>sesame-sail-generaldb</artifactId>
113 <version>${eu.earthobservatory.version}</version>
114 </dependency>
116 <dependency>
117 <groupId>org.openrdf.sesame</groupId>
118 <artifactId>sesame-sail-monetdb</artifactId>
119 <version>${eu.earthobservatory.version}</version>
120 </dependency>
122 <dependency>
123 <groupId>org.openrdf.sesame</groupId>
124 <artifactId>strabon-runtime</artifactId>
125 <version>${eu.earthobservatory.version}</version>
126 </dependency>
128 <dependency>
129 <groupId>org.openrdf.sesame</groupId>
130 <artifactId>strabon-endpoint</artifactId>
131 <version>${eu.earthobservatory.version}</version>
132 </dependency>
134 <dependency>
135 <groupId>org.openrdf.sesame</groupId>
136 <artifactId>sesame-sail-postgis</artifactId>
137 <version>${eu.earthobservatory.version}</version>
138 </dependency>
140 <!-- Sesame dependencies -->
141 <dependency>
142 <groupId>org.openrdf.sesame</groupId>
143 <artifactId>sesame-sail-memory</artifactId>
144 <version>${sesame.version}</version>
145 </dependency>
147 <dependency>
148 <groupId>org.openrdf.sesame</groupId>
149 <artifactId>sesame-repository-sail</artifactId>
150 <version>${sesame.version}</version>
151 </dependency>
153 <dependency>
154 <groupId>eu.earthobservatory</groupId>
155 <artifactId>strabon-runtime</artifactId>
156 <version>${eu.earthobservatory.version}</version>
157 </dependency>
159 <dependency>
160 <groupId>org.openrdf.sesame</groupId>
161 <artifactId>sesame-queryalgebra</artifactId>
162 <version>${sesame.version}</version>
163 </dependency>
165 <dependency>
166 <groupId>org.openrdf.sesame</groupId>
167 <artifactId>sesame-queryalgebra-evaluation</artifactId>
168 <version>${sesame.version}</version>
169 </dependency>
171 <dependency>
172 <groupId>org.openrdf.sesame</groupId>
173 <artifactId>sesame-queryalgebra-model</artifactId>
174 <version>${sesame.version}</version>
175 </dependency>
177 <dependency>
178 <groupId>org.openrdf.sesame</groupId>
179 <artifactId>sesame-queryparser-api</artifactId>
180 <version>${sesame.version}</version>
181 </dependency>
183 <dependency>
184 <groupId>org.openrdf.sesame</groupId>
185 <artifactId>sesame-queryparser-sparql</artifactId>
186 <version>${sesame.version}</version>
187 </dependency>
189 <dependency>
190 <groupId>org.openrdf.sesame</groupId>
191 <artifactId>sesame-model</artifactId>
192 <version>${sesame.version}</version>
193 </dependency>
195 <dependency>
196 <groupId>org.openrdf.sesame</groupId>
197 <artifactId>sesame-sail-api</artifactId>
198 <version>${sesame.version}</version>
199 </dependency>
201 <dependency>
202 <groupId>org.openrdf.sesame</groupId>
203 <artifactId>sesame-query</artifactId>
204 <version>${sesame.version}</version>
205 </dependency>
207 <dependency>
208 <groupId>org.openrdf.sesame</groupId>
209 <artifactId>sesame-sail-rdbms</artifactId>
210 <version>${sesame.version}</version>
211 </dependency>
213 <dependency>
214 <groupId>org.openrdf.sesame</groupId>
215 <artifactId>sesame-repository-sparql</artifactId>
216 <version>${sesame.version}</version>
217 </dependency>
219 <!-- Aduna Commons -->
220 <dependency>
221 <groupId>info.aduna.appbase</groupId>
222 <artifactId>aduna-appbase</artifactId>
223 <version>${aduna.appbase.version}</version>
224 <type>pom</type>
225 </dependency>
227 <dependency>
228 <groupId>info.aduna.commons</groupId>
229 <artifactId>aduna-commons-collections</artifactId>
230 <version>2.8.0</version>
231 </dependency>
233 <dependency>
234 <groupId>info.aduna.commons</groupId>
235 <artifactId>aduna-commons-concurrent</artifactId>
236 <version>2.7.0</version>
237 </dependency>
239 <dependency>
240 <groupId>info.aduna.commons</groupId>
241 <artifactId>aduna-commons-i18n</artifactId>
242 <version>1.4.0</version>
243 </dependency>
245 <dependency>
246 <groupId>info.aduna.commons</groupId>
247 <artifactId>aduna-commons-iteration</artifactId>
248 <version>2.10.0</version>
249 </dependency>
251 <dependency>
252 <groupId>info.aduna.commons</groupId>
253 <artifactId>aduna-commons-net-http-server-embedded</artifactId>
254 <version>2.5.0</version>
255 </dependency>
257 <!-- RIO -->
258 <dependency>
259 <groupId>org.openrdf.sesame</groupId>
260 <artifactId>sesame-rio-api</artifactId>
261 <version>${sesame.version}</version>
262 </dependency>
263 <dependency>
264 <groupId>org.openrdf.sesame</groupId>
265 <artifactId>sesame-rio-rdfxml</artifactId>
266 <version>${sesame.version}</version>
267 </dependency>
269 <dependency>
270 <groupId>org.openrdf.sesame</groupId>
271 <artifactId>sesame-rio-ntriples</artifactId>
272 <version>${sesame.version}</version>
273 </dependency>
275 <dependency>
276 <groupId>org.openrdf.sesame</groupId>
277 <artifactId>sesame-rio-turtle</artifactId>
278 <version>${sesame.version}</version>
279 </dependency>
281 <dependency>
282 <groupId>org.openrdf.sesame</groupId>
283 <artifactId>sesame-rio-trig</artifactId>
284 <version>${sesame.version}</version>
285 </dependency>
287 <dependency>
288 <groupId>org.openrdf.sesame</groupId>
289 <artifactId>sesame-rio-trix</artifactId>
290 <version>${sesame.version}</version>
291 </dependency>
293 <dependency>
294 <groupId>org.openrdf.sesame</groupId>
295 <artifactId>sesame-rio-n3</artifactId>
296 <version>${sesame.version}</version>
297 </dependency>
299 <dependency>
300 <groupId>org.openrdf.sesame</groupId>
301 <artifactId>sesame-rio-binary</artifactId>
302 <version>${sesame.version}</version>
303 </dependency>
305 <!-- GeoTools -->
306 <dependency>
307 <groupId>org.geotools</groupId>
308 <artifactId>gt-geojson</artifactId>
309 <version>${geotools.version}</version>
310 </dependency>
312 <dependency>
313 <groupId>org.geotools.xsd</groupId>
314 <artifactId>gt-xsd-kml</artifactId>
315 <version>${geotools.version}</version>
316 </dependency>
318 <dependency>
319 <groupId>org.geotools</groupId>
320 <artifactId>gt-xml</artifactId>
321 <version>${geotools.version}</version>
322 </dependency>
324 <dependency>
325 <groupId>org.geotools</groupId>
326 <artifactId>gt-epsg-hsql</artifactId>
327 <version>${geotools.version}</version>
328 </dependency>
329 <dependency>
330 <groupId>org.geotools</groupId>
331 <artifactId>gt-shapefile</artifactId>
332 <version>${geotools.version}</version>
333 </dependency>
335 <dependency>
336 <groupId>org.geotools</groupId>
337 <artifactId>gt-referencing</artifactId>
338 <version>${geotools.version}</version>
339 </dependency>
341 <dependency>
342 <groupId>org.geotools</groupId>
343 <artifactId>gt-jts-wrapper</artifactId>
344 <version>${geotools.version}</version>
345 </dependency>
347 <dependency>
348 <groupId>org.geotools</groupId>
349 <artifactId>gt-opengis</artifactId>
350 <version>${geotools.version}</version>
351 </dependency>
353 <dependency>
354 <groupId>org.geotools</groupId>
355 <artifactId>gt-epsg-wkt</artifactId>
356 <version>${geotools.version}</version>
357 </dependency>
359 <dependency>
360 <groupId>org.geotools</groupId>
361 <artifactId>gt-geometry</artifactId>
362 <version>${geotools.version}</version>
363 </dependency>
365 <dependency>
366 <groupId>org.geotools</groupId>
367 <artifactId>gt-data</artifactId>
368 <version>${geotools.version}</version>
369 </dependency>
371 <dependency>
372 <groupId>org.geotools</groupId>
373 <artifactId>gt-swing</artifactId>
374 <version>${geotools.version}</version>
375 </dependency>
377 <dependency>
378 <groupId>org.opengis</groupId>
379 <artifactId>geoapi-pending</artifactId>
380 <version>2.3-M1</version>
381 </dependency>
383 <!-- JTS -->
384 <dependency>
385 <groupId>com.vividsolutions</groupId>
386 <artifactId>jts</artifactId>
387 <version>${jts.version}</version>
388 <type>jar</type>
389 </dependency>
391 <!-- JDBC Drivers -->
392 <dependency>
393 <groupId>monetdb</groupId>
394 <artifactId>jdbcclient</artifactId>
395 <version>3.4.0</version>
396 </dependency>
398 <dependency>
399 <groupId>postgresql</groupId>
400 <artifactId>postgresql</artifactId>
401 <version>9.0-801.jdbc4</version>
402 </dependency>
404 <dependency>
405 <groupId>mysql</groupId>
406 <artifactId>mysql-connector-java</artifactId>
407 <version>5.1.15</version>
408 </dependency>
410 <!--
411 <dependency>
412 <groupId>net.sf</groupId>
413 <artifactId>log4jdbc4</artifactId>
414 <version>1.2</version>
415 </dependency>
416 -->
418 <!-- LOG4J -->
419 <dependency>
420 <groupId>org.slf4j</groupId>
421 <artifactId>slf4j-log4j12</artifactId>
422 <version>${slf4j.version}</version>
423 </dependency>
425 <!-- Apache Commons -->
426 <dependency>
427 <groupId>commons-cli</groupId>
428 <artifactId>commons-cli</artifactId>
429 <version>1.2</version>
430 </dependency>
432 <dependency>
433 <groupId>commons-dbcp</groupId>
434 <artifactId>commons-dbcp</artifactId>
435 <version>1.3</version>
436 </dependency>
438 <dependency>
439 <groupId>commons-fileupload</groupId>
440 <artifactId>commons-fileupload</artifactId>
441 <version>1.2.1</version>
442 </dependency>
444 <dependency>
445 <groupId>commons-io</groupId>
446 <artifactId>commons-io</artifactId>
448 <version>1.3.2</version>
449 </dependency>
451 <dependency>
452 <groupId>commons-httpclient</groupId>
453 <artifactId>commons-httpclient</artifactId>
454 <version>3.1</version>
455 <exclusions>
456 <exclusion>
457 <groupId>commons-logging</groupId>
458 <artifactId>commons-logging</artifactId>
459 </exclusion>
460 <exclusion>
461 <!-- httpclient includes older codec -->
462 <groupId>commons-codec</groupId>
463 <artifactId>commons-codec</artifactId>
464 </exclusion>
465 </exclusions>
466 </dependency>
468 <dependency>
469 <groupId>commons-codec</groupId>
470 <artifactId>commons-codec</artifactId>
471 <version>1.4</version>
472 </dependency>
474 <dependency>
475 <groupId>commons-validator</groupId>
476 <artifactId>commons-validator</artifactId>
477 <version>1.3.1</version>
478 </dependency>
480 <!-- Spring framework -->
481 <dependency>
482 <groupId>org.springframework</groupId>
483 <artifactId>spring-aop</artifactId>
484 <version>${spring.version}</version>
485 <exclusions>
486 <exclusion>
487 <groupId>commons-logging</groupId>
488 <artifactId>commons-logging</artifactId>
489 </exclusion>
490 </exclusions>
491 </dependency>
493 <dependency>
494 <groupId>org.springframework</groupId>
495 <artifactId>spring-webmvc</artifactId>
496 <version>${spring.version}</version>
497 <exclusions>
498 <exclusion>
499 <groupId>commons-logging</groupId>
500 <artifactId>commons-logging</artifactId>
501 </exclusion>
502 </exclusions>
503 </dependency>
505 <!-- Apache CXF framework -->
506 <!--
507 <dependency>
508 <groupId>org.apache.cxf</groupId>
509 <artifactId>cxf-rt-frontend-jaxws</artifactId>
510 <version>2.2.5</version>
511 </dependency>
513 <dependency>
514 <groupId>org.apache.cxf</groupId>
515 <artifactId>cxf-rt-transports-http</artifactId>
516 <version>2.2.5</version>
517 </dependency>
519 <dependency>
520 <groupId>org.apache.cxf</groupId>
521 <artifactId>cxf-rt-transports-http-jetty</artifactId>
522 <version>2.2.5</version>
523 </dependency>
524 -->
525 <!-- Compliance tests -->
526 <dependency>
527 <groupId>edu.lehigh.swat.bench</groupId>
528 <artifactId>uba</artifactId>
529 <version>1.7</version>
530 </dependency>
532 <dependency>
533 <groupId>edu.lehigh.swat.bench</groupId>
534 <artifactId>ubt</artifactId>
535 <version>1.1</version>
536 </dependency>
538 <!-- Testing: JUnit -->
539 <dependency>
540 <groupId>junit</groupId>
541 <artifactId>junit</artifactId>
542 <version>4.7</version>
543 <scope>test</scope>
544 </dependency>
546 <!-- Various -->
547 <dependency>
548 <groupId>cglib</groupId>
549 <artifactId>cglib</artifactId>
550 <version>2.2</version>
551 </dependency>
553 <dependency>
554 <groupId>org.jvnet.ogc</groupId>
555 <artifactId>ogc-tools-gml-jts</artifactId>
556 <version>1.0.2</version>
557 </dependency>
558 <dependency>
559 <groupId>com.sun.xml.bind</groupId>
560 <artifactId>jaxb-impl</artifactId>
561 <version>2.1.1</version>
562 </dependency>
564 <dependency>
565 <groupId>javax</groupId>
566 <artifactId>javaee-web-api</artifactId>
567 <version>6.0</version>
568 <scope>provided</scope>
569 </dependency>
570 </dependencies>
571 </dependencyManagement>
573 <build>
574 <pluginManagement>
575 <plugins>
576 <plugin>
577 <groupId>org.apache.maven.plugins</groupId>
578 <artifactId>maven-assembly-plugin</artifactId>
579 <version>2.3</version>
580 </plugin>
582 <!-- The following plugin is for being able to run tomcat6/7:run -->
583 <plugin>
584 <groupId>org.apache.tomcat.maven</groupId>
585 <artifactId>tomcat7-maven-plugin</artifactId>
586 <version>2.0</version>
587 </plugin>
588 </plugins>
589 </pluginManagement>
591 <plugins>
592 <plugin>
593 <groupId>org.apache.maven.plugins</groupId>
594 <artifactId>maven-compiler-plugin</artifactId>
595 <version>2.3.2</version>
596 <configuration>
597 <source>1.6</source>
598 <target>1.6</target>
599 <encoding>utf8</encoding>
600 </configuration>
601 </plugin>
602 <!-- <plugin> <groupId>ch.elca.el4j.maven.plugins</groupId> <artifactId>maven-depgraph-plugin</artifactId>
603 <configuration> <outDir>target/site/images</outDir> <dotFile>${pom.artifactId}.dot</dotFile>
604 <outFile>${pom.artifactId}.png</outFile> <filterEmptyArtifacts>true</filterEmptyArtifacts>
605 </configuration> </plugin> -->
606 <plugin>
607 <artifactId>maven-release-plugin</artifactId>
608 <version>2.2.2</version>
609 <configuration>
610 <tagNameFormat>v@{project.version}</tagNameFormat>
611 <autoVersionSubmodules>true</autoVersionSubmodules>
612 </configuration>
613 </plugin>
614 <!-- The following plugin is to enable skipTest (see also properties) -->
615 <plugin>
616 <groupId>org.apache.maven.plugins</groupId>
617 <artifactId>maven-surefire-plugin</artifactId>
618 <version>2.12</version>
619 <configuration>
620 <skipTests>${skipTests}</skipTests>
621 </configuration>
622 </plugin>
623 </plugins>
624 </build>
626 <reporting>
627 <plugins>
628 <plugin>
629 <groupId>org.apache.maven.plugins</groupId>
630 <artifactId>maven-javadoc-plugin</artifactId>
631 <version>2.8.1</version>
632 <configuration>
633 <source>1.6</source>
634 <encoding>utf8</encoding>
635 </configuration>
636 </plugin>
637 </plugins>
638 </reporting>
641 <!-- <pluginRepositories> <pluginRepository> <id>elca-services</id> <url>http://el4.elca-services.ch/el4j/maven2repository</url>
642 <releases> <enabled>true</enabled> </releases> </pluginRepository> </pluginRepositories> -->
644 <pluginRepositories>
645 <!-- The following repository is for being able to run tomcat7:run -->
646 <pluginRepository>
647 <id>apache.snapshots</id>
648 <name>Apache Snapshots</name>
649 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
650 <releases>
651 <enabled>false</enabled>
652 </releases>
653 <snapshots>
654 <enabled>true</enabled>
655 </snapshots>
656 </pluginRepository>
657 </pluginRepositories>
659 <scm>
660 <connection>scm:hg:ssh://hg.strabon.di.uoa.gr//opt/hg/Strabon/</connection>
661 <developerConnection>scm:hg:ssh://hg.strabon.di.uoa.gr//opt/hg/Strabon/</developerConnection>
662 <url>http://hg.strabon.di.uoa.gr/Strabon/</url>
663 </scm>
665 <repositories>
666 <!--
667 <repository>
668 <releases>
669 <enabled>true</enabled>
670 </releases>
671 <snapshots>
672 <enabled>false</enabled>
673 </snapshots>
674 <id>strabon.testing</id>
675 <name>Strabon - maven repository</name>
676 <url>http://maven.strabon.di.uoa.gr/content/repositories/testing</url>
677 </repository>
678 -->
679 <repository>
680 <releases>
681 <enabled>true</enabled>
682 </releases>
683 <snapshots>
684 <enabled>false</enabled>
685 </snapshots>
686 <id>strabon</id>
687 <name>Strabon - maven repository</name>
688 <url>http://maven.strabon.di.uoa.gr/content/repositories/releases</url>
689 </repository>
690 <repository>
691 <releases>
692 <enabled>false</enabled>
693 </releases>
694 <snapshots>
695 <enabled>true</enabled>
696 </snapshots>
697 <id>strabon.snapshot</id>
698 <name>Strabon - maven repository - snapshots</name>
699 <url>http://maven.strabon.di.uoa.gr/content/repositories/snapshots</url>
700 </repository>
701 <repository>
702 <releases>
703 <enabled>true</enabled>
704 </releases>
705 <snapshots>
706 <enabled>false</enabled>
707 </snapshots>
708 <id>aduna-opensource.releases</id>
709 <name>Aduna Open Source - Maven releases</name>
710 <url>http://repo.aduna-software.org/maven2/releases</url>
711 </repository>
712 <repository>
713 <releases>
714 <enabled>false</enabled>
715 </releases>
716 <snapshots>
717 <enabled>true</enabled>
718 </snapshots>
719 <id>aduna-opensource.snapshots</id>
720 <name>Aduna Open Source - Maven snapshots</name>
721 <url>http://repo.aduna-software.org/maven2/snapshots</url>
722 </repository>
723 <repository>
724 <snapshots>
725 <enabled>true</enabled>
726 </snapshots>
727 <id>opengeo</id>
728 <name>OpenGeo Maven Repository</name>
729 <url>http://download.osgeo.org/webdav/geotools/</url>
730 </repository>
731 </repositories>
733 <distributionManagement>
734 <repository>
735 <id>strabon</id>
736 <name>Strabon maven repo</name>
737 <url>http://maven.strabon.di.uoa.gr/content/repositories/releases</url>
738 </repository>
739 <snapshotRepository>
740 <id>strabon.snapshot</id>
741 <name>Strabon maven repo</name>
742 <url>http://maven.strabon.di.uoa.gr/content/repositories/snapshots</url>
743 </snapshotRepository>
744 </distributionManagement>
745 </project>