Strabon
diff sqlite/pom.xml @ 1183:a92a8a80aae8
started adding sqlite database backend
author | Dimitris Bilidas <grad0903@di.uoa.gr> |
---|---|
date | Tue Jun 04 18:06:42 2013 +0300 (2013-06-04) |
parents | |
children | f7051f450747 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/sqlite/pom.xml Tue Jun 04 18:06:42 2013 +0300 1.3 @@ -0,0 +1,94 @@ 1.4 +<?xml version="1.0"?> 1.5 +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" 1.6 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 1.7 + <modelVersion>4.0.0</modelVersion> 1.8 + 1.9 + <parent> 1.10 + <groupId>eu.earthobservatory</groupId> 1.11 + <artifactId>strabon</artifactId> 1.12 + <version>3.2.9-SNAPSHOT</version> 1.13 + </parent> 1.14 + 1.15 + <groupId>org.openrdf.sesame</groupId> 1.16 + <artifactId>sesame-sail-sqlite</artifactId> 1.17 + <name>OpenRDF Sesame: SqliteDBStore </name> 1.18 + <description>SqliteDBStore Store Support</description> 1.19 + <packaging>jar</packaging> 1.20 + 1.21 + <url>http://maven.apache.org</url> 1.22 + <dependencies> 1.23 + <dependency> 1.24 + <groupId>junit</groupId> 1.25 + <artifactId>junit</artifactId> 1.26 + <version>3.8.1</version> 1.27 + <scope>test</scope> 1.28 + </dependency> 1.29 + <dependency> 1.30 + <groupId>org.openrdf.sesame</groupId> 1.31 + <artifactId>sesame-queryalgebra-evaluation-spatial</artifactId> 1.32 + </dependency> 1.33 + 1.34 + <dependency> 1.35 + <groupId>org.openrdf.sesame</groupId> 1.36 + <artifactId>sesame-sail-rdbms</artifactId> 1.37 + </dependency> 1.38 + 1.39 + <dependency> 1.40 + <groupId>org.openrdf.sesame</groupId> 1.41 + <artifactId>sesame-sail-api</artifactId> 1.42 + </dependency> 1.43 + 1.44 + <dependency> 1.45 + <groupId>org.openrdf.sesame</groupId> 1.46 + <artifactId>sesame-queryalgebra-evaluation</artifactId> 1.47 + </dependency> 1.48 + 1.49 + <dependency> 1.50 + <groupId>org.openrdf.sesame</groupId> 1.51 + <artifactId>sesame-queryalgebra-model</artifactId> 1.52 + </dependency> 1.53 + 1.54 + <dependency> 1.55 + <groupId>org.openrdf.sesame</groupId> 1.56 + <artifactId>sesame-query</artifactId> 1.57 + </dependency> 1.58 + 1.59 + <dependency> 1.60 + <groupId>org.openrdf.sesame</groupId> 1.61 + <artifactId>sesame-model</artifactId> 1.62 + </dependency> 1.63 + 1.64 + <dependency> 1.65 + <groupId>info.aduna.commons</groupId> 1.66 + <artifactId>aduna-commons-collections</artifactId> 1.67 + </dependency> 1.68 + 1.69 + <dependency> 1.70 + <groupId>info.aduna.commons</groupId> 1.71 + <artifactId>aduna-commons-iteration</artifactId> 1.72 + </dependency> 1.73 + 1.74 + <dependency> 1.75 + <groupId>info.aduna.commons</groupId> 1.76 + <artifactId>aduna-commons-concurrent</artifactId> 1.77 + </dependency> 1.78 + <dependency> 1.79 + <groupId>org.openrdf.sesame</groupId> 1.80 + <artifactId>sesame-sail-generaldb</artifactId> 1.81 + </dependency> 1.82 + <dependency> 1.83 + <groupId>commons-dbcp</groupId> 1.84 + <artifactId>commons-dbcp</artifactId> 1.85 + </dependency> 1.86 + 1.87 +<dependency> 1.88 + <groupId>org.openrdf.sesame</groupId> 1.89 + <artifactId>sesame-repository-sail</artifactId> 1.90 + </dependency> 1.91 + <dependency> 1.92 + <groupId>postgresql</groupId> 1.93 + <artifactId>postgresql</artifactId> 1.94 + <scope>provided</scope> 1.95 + </dependency> 1.96 + </dependencies> 1.97 +</project>