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/xsd/maven-4.0.0.xsd">
|
---|
2 | <modelVersion>4.0.0</modelVersion>
|
---|
3 | <groupId>BH13SPARQLBuilder</groupId>
|
---|
4 | <artifactId>BH13SPARQLBuilder</artifactId>
|
---|
5 | <version>0.0.1-SNAPSHOT</version>
|
---|
6 | <build>
|
---|
7 | <sourceDirectory>src</sourceDirectory>
|
---|
8 | <plugins>
|
---|
9 | <plugin>
|
---|
10 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
11 | <version>3.1</version>
|
---|
12 | <configuration>
|
---|
13 | <source>1.7</source>
|
---|
14 | <target>1.7</target>
|
---|
15 | </configuration>
|
---|
16 | </plugin>
|
---|
17 | </plugins>
|
---|
18 | </build>
|
---|
19 | <dependencies>
|
---|
20 | <dependency>
|
---|
21 | <groupId>org.apache.jena</groupId>
|
---|
22 | <artifactId>jena-arq</artifactId>
|
---|
23 | <version>2.11.0</version>
|
---|
24 | </dependency>
|
---|
25 | <dependency>
|
---|
26 | <groupId>org.apache.jena</groupId>
|
---|
27 | <artifactId>jena-core</artifactId>
|
---|
28 | <version>2.11.0</version>
|
---|
29 | </dependency>
|
---|
30 | <dependency>
|
---|
31 | <groupId>org.apache.jena</groupId>
|
---|
32 | <artifactId>jena</artifactId>
|
---|
33 | <version>2.11.0</version>
|
---|
34 | <type>pom</type>
|
---|
35 | </dependency>
|
---|
36 | </dependencies>
|
---|
37 | </project> |
---|