Strabon
view resultio-spatial/pom.xml @ 1010:34a6c207f0d3
changed StrabonEndpoint to SPARQLEndpoint, added SpatialEndpoint to support KML format for all spatial endpoints (Virtuoso, Parliament, Strabon), added tests for SpatialEndpoint, tests for SPARQLEndpoint with Parliament and Virtuoso. Tests need to be added for Virtuoso endpoint to test which formats are not supported
author | Kallirroi Dogani <kallirroi@di.uoa.gr> |
---|---|
date | Sat Apr 06 18:05:36 2013 +0300 (2013-04-06) |
parents | 389213ce7843 |
children | f662352c3799 a1e2561b7c2c 92b90ac06d39 |
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 <parent>
6 <groupId>eu.earthobservatory</groupId>
7 <artifactId>strabon</artifactId>
8 <version>3.2.9-SNAPSHOT</version>
9 </parent>
11 <groupId>org.openrdf.sesame</groupId>
12 <artifactId>sesame-queryresultio-spatial</artifactId>
13 <name>OpenRDF Sesame: Spatial Query result IO</name>
14 <description>Minimal spatial extensions of Query result parser and writer implementation for the SPARQL Query Results Format.</description>
15 <packaging>pom</packaging>
17 <modules>
18 <module>api</module>
19 <module>sparqlgeojson</module>
20 <module>sparqlhtml</module>
21 <module>sparqlkml</module>
22 <module>sparqlxml</module>
23 <module>text</module>
24 </modules>
26 <!--
27 <dependencies>
28 <dependency>
29 <groupId>org.openrdf.sesame</groupId>
30 <artifactId>sesame-sail-generaldb</artifactId>
31 </dependency>
33 <dependency>
34 <groupId>org.openrdf.sesame</groupId>
35 <artifactId>sesame-queryresultio-sparqlxml</artifactId>
36 <version>${sesame.version}</version>
37 </dependency>
39 <dependency>
40 <groupId>org.openrdf.sesame</groupId>
41 <artifactId>sesame-queryresultio-sparqljson</artifactId>
42 <version>${sesame.version}</version>
43 </dependency>
45 <dependency>
46 <groupId>org.openrdf.sesame</groupId>
47 <artifactId>sesame-queryresultio-text</artifactId>
48 <version>${sesame.version}</version>
49 </dependency>
51 <dependency>
52 <groupId>org.openrdf.sesame</groupId>
53 <artifactId>sesame-queryalgebra-model</artifactId>
54 </dependency>
56 <dependency>
57 <groupId>org.openrdf.sesame</groupId>
58 <artifactId>sesame-model</artifactId>
59 </dependency>
61 <dependency>
62 <groupId>org.openrdf.sesame</groupId>
63 <artifactId>sesame-query</artifactId>
64 </dependency>
66 <dependency>
67 <groupId>org.openrdf.sesame</groupId>
68 <artifactId>sesame-repository-sparql</artifactId>
69 </dependency>
71 <dependency>
72 <groupId>org.slf4j</groupId>
73 <artifactId>slf4j-log4j12</artifactId>
74 </dependency>
76 <dependency>
77 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
79 </dependency>
81 <dependency>
82 <groupId>org.geotools</groupId>
83 <artifactId>gt-geojson</artifactId>
84 </dependency>
86 <dependency>
87 <groupId>org.geotools.xsd</groupId>
88 <artifactId>gt-xsd-kml</artifactId>
89 </dependency>
91 <dependency>
92 <groupId>org.geotools</groupId>
93 <artifactId>gt-xml</artifactId>
94 </dependency>
96 <dependency>
97 <groupId>org.geotools</groupId>
98 <artifactId>gt-epsg-hsql</artifactId>
99 </dependency>
101 <dependency>
102 <groupId>org.geotools</groupId>
103 <artifactId>gt-shapefile</artifactId>
104 </dependency>
106 <dependency>
107 <groupId>org.geotools</groupId>
108 <artifactId>gt-opengis</artifactId>
109 </dependency>
110 <dependency>
111 <groupId>com.vividsolutions</groupId>
112 <artifactId>jts</artifactId>
113 <type>jar</type>
114 <scope>compile</scope>
115 </dependency>
116 </dependencies>
117 -->
118 </project>