Strabon
view resultio-spatial/sparqlgeojson/pom.xml @ 1448:3776ff96efea
bug #78: fixed also the case where spatial functions in SELECT did
not recognize the variables that result from a BIND.
For this, I changed the tuple expression, so that it evaluates in
Java the spatial functions that contain such kind of variables.
not recognize the variables that result from a BIND.
For this, I changed the tuple expression, so that it evaluates in
Java the spatial functions that contain such kind of variables.
author | Stella Giannakopoulou <sgian@di.uoa.gr> |
---|---|
date | Thu Dec 18 18:03:57 2014 +0200 (2014-12-18) |
parents | e453684f594f |
children | 5b6b65340693 0397b9f4b68f |
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>org.openrdf.sesame</groupId>
7 <artifactId>sesame-queryresultio-spatial</artifactId>
8 <version>3.2.11-SNAPSHOT</version>
9 </parent>
11 <artifactId>sesame-queryresultio-spatial-sparqlgeojson</artifactId>
13 <name>OpenRDF Sesame: Spatial Query result IO - GeoJSON</name>
14 <description>Spatial Query result IO API</description>
16 <dependencies>
18 <dependency> <!-- TO BE REMOVED -->
19 <groupId>org.openrdf.sesame</groupId>
20 <artifactId>sesame-queryalgebra-evaluation-spatial</artifactId>
21 </dependency>
22 <dependency> <!-- TO BE REMOVED ? -->
23 <groupId>org.openrdf.sesame</groupId>
24 <artifactId>sesame-sail-generaldb</artifactId>
25 </dependency>
27 <dependency>
28 <groupId>org.openrdf.sesame</groupId>
29 <artifactId>sesame-queryresultio-spatial-api</artifactId>
30 </dependency>
32 <dependency>
33 <groupId>org.slf4j</groupId>
34 <artifactId>slf4j-log4j12</artifactId>
35 </dependency>
37 <dependency>
38 <groupId>junit</groupId>
39 <artifactId>junit</artifactId>
40 <scope>test</scope>
41 </dependency>
43 <dependency>
44 <groupId>org.geotools</groupId>
45 <artifactId>gt-geojson</artifactId>
46 </dependency>
49 <dependency>
50 <groupId>org.geotools</groupId>
51 <artifactId>gt-xml</artifactId>
52 </dependency>
54 <dependency>
55 <groupId>org.geotools</groupId>
56 <artifactId>gt-epsg-hsql</artifactId>
57 </dependency>
59 <dependency>
60 <groupId>org.geotools</groupId>
61 <artifactId>gt-shapefile</artifactId>
62 </dependency>
64 <dependency>
65 <groupId>org.geotools</groupId>
66 <artifactId>gt-opengis</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>com.vividsolutions</groupId>
70 <artifactId>jts</artifactId>
71 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
75 </dependencies>
76 </project>