aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml61
1 files changed, 61 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..06073fb
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,61 @@
1<?xml version='1.0' encoding='UTF-8'?>
2<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>uk.ac.ox.cs.rsacomb</groupId>
5 <artifactId>rsacomb_2.13</artifactId>
6 <packaging>jar</packaging>
7 <description>Re-implementation of the combined approach for CQ answering over RSA ontologies.</description>
8 <url>https://github.com/KRR-Oxford/RSAComb</url>
9 <version>0.1.0</version>
10 <licenses>
11 <license>
12 <name>Apache 2</name>
13 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
14 <distribution>repo</distribution>
15 </license>
16 </licenses>
17 <name>RSAComb</name>
18 <organization>
19 <name>Department of Computer Science - University of Oxford</name>
20 <url>https://www.cs.ox.ac.uk</url>
21 </organization>
22 <scm>
23 <url>https://github.com/KRR-Oxford/RSAComb</url>
24 <connection>scm:git@github.com:KRR-Oxford/RSAComb.git</connection>
25 </scm>
26 <dependencies>
27 <dependency>
28 <groupId>org.scala-lang</groupId>
29 <artifactId>scala-library</artifactId>
30 <version>2.13.4</version>
31 </dependency>
32 <dependency>
33 <groupId>org.scalatest</groupId>
34 <artifactId>scalatest_2.13</artifactId>
35 <version>3.2.3</version>
36 <scope>test</scope>
37 </dependency>
38 <dependency>
39 <groupId>org.scalatest</groupId>
40 <artifactId>scalatest-flatspec_2.13</artifactId>
41 <version>3.2.3</version>
42 <scope>test</scope>
43 </dependency>
44 <dependency>
45 <groupId>org.scalatest</groupId>
46 <artifactId>scalatest-shouldmatchers_2.13</artifactId>
47 <version>3.2.3</version>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>net.sourceforge.owlapi</groupId>
52 <artifactId>owlapi-apibinding</artifactId>
53 <version>5.1.17</version>
54 </dependency>
55 <dependency>
56 <groupId>org.scala-graph</groupId>
57 <artifactId>graph-core_2.13</artifactId>
58 <version>1.13.2</version>
59 </dependency>
60 </dependencies>
61</project> \ No newline at end of file