aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml73
1 files changed, 72 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index fad1545..ad8c2b1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,11 +3,22 @@
3 <modelVersion>4.0.0</modelVersion> 3 <modelVersion>4.0.0</modelVersion>
4 <groupId>uk.ac.ox.cs.pagoda</groupId> 4 <groupId>uk.ac.ox.cs.pagoda</groupId>
5 <artifactId>pagoda</artifactId> 5 <artifactId>pagoda</artifactId>
6 <version>2.0.0</version> 6 <version>2.1.0-SNAPSHOT</version>
7 <packaging>jar</packaging>
7 <name>PAGOdA</name> 8 <name>PAGOdA</name>
8 <build> 9 <build>
9 <sourceDirectory>src</sourceDirectory> 10 <sourceDirectory>src</sourceDirectory>
10 <testSourceDirectory>test</testSourceDirectory> 11 <testSourceDirectory>test</testSourceDirectory>
12 <resources>
13 <resource>
14 <directory>src/resources</directory>
15 </resource>
16 </resources>
17 <testResources>
18 <testResource>
19 <directory>test/resources</directory>
20 </testResource>
21 </testResources>
11 <plugins> 22 <plugins>
12 <plugin> 23 <plugin>
13 <artifactId>maven-compiler-plugin</artifactId> 24 <artifactId>maven-compiler-plugin</artifactId>
@@ -21,6 +32,19 @@
21 <artifactId>maven-project-info-reports-plugin</artifactId> 32 <artifactId>maven-project-info-reports-plugin</artifactId>
22 <version>2.7</version> 33 <version>2.7</version>
23 </plugin> 34 </plugin>
35 <plugin>
36 <artifactId>maven-assembly-plugin</artifactId>
37 <configuration>
38 <archive>
39 <manifest>
40 <mainClass>uk.ac.ox.cs.pagoda.Pagoda</mainClass>
41 </manifest>
42 </archive>
43 <descriptorRefs>
44 <descriptorRef>jar-with-dependencies</descriptorRef>
45 </descriptorRefs>
46 </configuration>
47 </plugin>
24 </plugins> 48 </plugins>
25 </build> 49 </build>
26 <reporting> 50 <reporting>
@@ -68,6 +92,11 @@
68 </reporting> 92 </reporting>
69 <dependencies> 93 <dependencies>
70 <dependency> 94 <dependency>
95 <groupId>commons-cli</groupId>
96 <artifactId>commons-cli</artifactId>
97 <version>1.3</version>
98 </dependency>
99 <dependency>
71 <groupId>com.hermit-reasoner</groupId> 100 <groupId>com.hermit-reasoner</groupId>
72 <artifactId>org.semanticweb.hermit</artifactId> 101 <artifactId>org.semanticweb.hermit</artifactId>
73 <version>1.3.8.1</version> 102 <version>1.3.8.1</version>
@@ -83,6 +112,12 @@
83 <version>2.7.13</version> 112 <version>2.7.13</version>
84 </dependency> 113 </dependency>
85 <dependency> 114 <dependency>
115 <groupId>org.openrdf.sesame</groupId>
116 <artifactId>sesame-rio-rdfxml</artifactId>
117 <version>2.7.13</version>
118 <scope>compile</scope>
119 </dependency>
120 <dependency>
86 <groupId>org.apache.jena</groupId> 121 <groupId>org.apache.jena</groupId>
87 <artifactId>jena-arq</artifactId> 122 <artifactId>jena-arq</artifactId>
88 <version>2.12.0</version> 123 <version>2.12.0</version>
@@ -97,5 +132,41 @@
97 <artifactId>jgrapht-jdk1.5</artifactId> 132 <artifactId>jgrapht-jdk1.5</artifactId>
98 <version>0.7.3</version> 133 <version>0.7.3</version>
99 </dependency> 134 </dependency>
135 <dependency>
136 <groupId>org.testng</groupId>
137 <artifactId>testng</artifactId>
138 <version>6.8.8</version>
139 <scope>test</scope>
140 </dependency>
141 <!--<dependency>-->
142 <!--<groupId>com.googlecode.json-simple</groupId>-->
143 <!--<artifactId>json-simple</artifactId>-->
144 <!--<version>1.1.1</version>-->
145 <!--</dependency>-->
146 <dependency>
147 <groupId>com.google.code.gson</groupId>
148 <artifactId>gson</artifactId>
149 <version>2.3.1</version>
150 </dependency>
151 <dependency>
152 <groupId>net.sf.ehcache</groupId>
153 <artifactId>ehcache</artifactId>
154 <version>2.10.0</version>
155 </dependency>
156 <dependency>
157 <groupId>uk.ac.ox.cs.jrdfox</groupId>
158 <artifactId>jrdfox</artifactId>
159 <version>1.0</version>
160 </dependency>
161 <!--<dependency>-->
162 <!--<groupId>commons-lang</groupId>-->
163 <!--<artifactId>commons-lang</artifactId>-->
164 <!--<version>2.1</version>-->
165 <!--</dependency>-->
166 <!--<dependency>-->
167 <!--<groupId>org.codehaus.plexus</groupId>-->
168 <!--<artifactId>plexus-utils</artifactId>-->
169 <!--<version>1.1</version>-->
170 <!--</dependency>-->
100 </dependencies> 171 </dependencies>
101</project> 172</project>