|
| 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"> |
| 2 | + |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <parent> |
| 6 | + <groupId>org.eclipse.rdf4j</groupId> |
| 7 | + <artifactId>rdf4j-compliance</artifactId> |
| 8 | + <version>2.3-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + |
| 11 | + <artifactId>rdf4j-elasticsearch-compliance</artifactId> |
| 12 | + |
| 13 | + <name>RDF4J Elasticsearch Sail Tests</name> |
| 14 | + <description>Tests for Elasticsearch.</description> |
| 15 | + |
| 16 | + <properties> |
| 17 | + <elasticsearch.version>1.7.0</elasticsearch.version> |
| 18 | + </properties> |
| 19 | + |
| 20 | + <dependencies> |
| 21 | + <dependency> |
| 22 | + <groupId>${project.groupId}</groupId> |
| 23 | + <artifactId>rdf4j-sail-elasticsearch</artifactId> |
| 24 | + <version>${project.version}</version> |
| 25 | + <scope>test</scope> |
| 26 | + </dependency> |
| 27 | + |
| 28 | + <dependency> |
| 29 | + <groupId>junit</groupId> |
| 30 | + <artifactId>junit</artifactId> |
| 31 | + <scope>test</scope> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>${project.groupId}</groupId> |
| 35 | + <artifactId>rdf4j-rio-rdfxml</artifactId> |
| 36 | + <version>${project.version}</version> |
| 37 | + <scope>test</scope> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>${project.groupId}</groupId> |
| 41 | + <artifactId>rdf4j-lucene-testsuite</artifactId> |
| 42 | + <version>${project.version}</version> |
| 43 | + <scope>test</scope> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.slf4j</groupId> |
| 47 | + <artifactId>jcl-over-slf4j</artifactId> |
| 48 | + <scope>test</scope> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>ch.qos.logback</groupId> |
| 52 | + <artifactId>logback-classic</artifactId> |
| 53 | + <scope>test</scope> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.slf4j</groupId> |
| 57 | + <artifactId>log4j-over-slf4j</artifactId> |
| 58 | + <scope>test</scope> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>org.elasticsearch</groupId> |
| 62 | + <artifactId>elasticsearch</artifactId> |
| 63 | + <version>${elasticsearch.version}</version> |
| 64 | + </dependency> |
| 65 | + </dependencies> |
| 66 | +</project> |
0 commit comments