diff options
author | Federico Igne <git@federicoigne.com> | 2021-10-22 19:06:45 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2021-10-22 19:06:45 +0100 |
commit | 1222828a6eec9493cef11234cbca4a83e425e326 (patch) | |
tree | e32dd424c78faa05926bc9ea0a7b34e9d42fcede | |
parent | 0fdc1f692bb41f9941f6ea4f32ef8c2948a515f7 (diff) | |
download | RSAComb-1222828a6eec9493cef11234cbca4a83e425e326.tar.gz RSAComb-1222828a6eec9493cef11234cbca4a83e425e326.zip |
Add pom.xml
-rw-r--r-- | pom.xml | 54 |
1 files changed, 54 insertions, 0 deletions
@@ -0,0 +1,54 @@ | |||
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 | <name>RSAComb</name> | ||
11 | <organization> | ||
12 | <name>Department of Computer Science - University of Oxford</name> | ||
13 | <url>https://www.cs.ox.ac.uk</url> | ||
14 | </organization> | ||
15 | <scm> | ||
16 | <url>https://github.com/KRR-Oxford/RSAComb</url> | ||
17 | <connection>scm:git@github.com:KRR-Oxford/RSAComb.git</connection> | ||
18 | </scm> | ||
19 | <dependencies> | ||
20 | <dependency> | ||
21 | <groupId>org.scala-lang</groupId> | ||
22 | <artifactId>scala-library</artifactId> | ||
23 | <version>2.13.4</version> | ||
24 | </dependency> | ||
25 | <dependency> | ||
26 | <groupId>org.scalatest</groupId> | ||
27 | <artifactId>scalatest_2.13</artifactId> | ||
28 | <version>3.2.3</version> | ||
29 | <scope>test</scope> | ||
30 | </dependency> | ||
31 | <dependency> | ||
32 | <groupId>org.scalatest</groupId> | ||
33 | <artifactId>scalatest-flatspec_2.13</artifactId> | ||
34 | <version>3.2.3</version> | ||
35 | <scope>test</scope> | ||
36 | </dependency> | ||
37 | <dependency> | ||
38 | <groupId>org.scalatest</groupId> | ||
39 | <artifactId>scalatest-shouldmatchers_2.13</artifactId> | ||
40 | <version>3.2.3</version> | ||
41 | <scope>test</scope> | ||
42 | </dependency> | ||
43 | <dependency> | ||
44 | <groupId>net.sourceforge.owlapi</groupId> | ||
45 | <artifactId>owlapi-apibinding</artifactId> | ||
46 | <version>5.1.17</version> | ||
47 | </dependency> | ||
48 | <dependency> | ||
49 | <groupId>org.scala-graph</groupId> | ||
50 | <artifactId>graph-core_2.13</artifactId> | ||
51 | <version>1.13.2</version> | ||
52 | </dependency> | ||
53 | </dependencies> | ||
54 | </project> \ No newline at end of file | ||