blob: 06073fb86d536363ae44936039def1531825fd30 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?xml version='1.0' encoding='UTF-8'?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>uk.ac.ox.cs.rsacomb</groupId>
<artifactId>rsacomb_2.13</artifactId>
<packaging>jar</packaging>
<description>Re-implementation of the combined approach for CQ answering over RSA ontologies.</description>
<url>https://github.com/KRR-Oxford/RSAComb</url>
<version>0.1.0</version>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<name>RSAComb</name>
<organization>
<name>Department of Computer Science - University of Oxford</name>
<url>https://www.cs.ox.ac.uk</url>
</organization>
<scm>
<url>https://github.com/KRR-Oxford/RSAComb</url>
<connection>scm:git@github.com:KRR-Oxford/RSAComb.git</connection>
</scm>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.13.4</version>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.13</artifactId>
<version>3.2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-flatspec_2.13</artifactId>
<version>3.2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-shouldmatchers_2.13</artifactId>
<version>3.2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-apibinding</artifactId>
<version>5.1.17</version>
</dependency>
<dependency>
<groupId>org.scala-graph</groupId>
<artifactId>graph-core_2.13</artifactId>
<version>1.13.2</version>
</dependency>
</dependencies>
</project>
|