Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Commit 010d552

Browse files
Added OWL API dependencies
1 parent 6f7a29d commit 010d552

2 files changed

Lines changed: 42 additions & 5 deletions

File tree

pom.xml

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
<MaxPermGen>512m</MaxPermGen>
8282
<CodeCacheSize>512m</CodeCacheSize>
8383
<gpg.keyname>AKSW</gpg.keyname>
84+
<owlapi.version>5.1.0</owlapi.version>
8485
</properties>
8586

8687
<prerequisites>
@@ -177,6 +178,28 @@
177178
<version>${jena.version}</version>
178179
</dependency>
179180

181+
<!-- OWL API -->
182+
<dependency>
183+
<groupId>net.sourceforge.owlapi</groupId>
184+
<artifactId>owlapi-api</artifactId>
185+
<version>${owlapi.version}</version>
186+
</dependency>
187+
<dependency>
188+
<groupId>net.sourceforge.owlapi</groupId>
189+
<artifactId>owlapi-apibinding</artifactId>
190+
<version>${owlapi.version}</version>
191+
</dependency>
192+
<dependency>
193+
<groupId>net.sourceforge.owlapi</groupId>
194+
<artifactId>owlapi-impl</artifactId>
195+
<version>${owlapi.version}</version>
196+
</dependency>
197+
<dependency>
198+
<groupId>net.sourceforge.owlapi</groupId>
199+
<artifactId>owlapi-parsers</artifactId>
200+
<version>${owlapi.version}</version>
201+
</dependency>
202+
180203
<!-- Graph API -->
181204
<dependency>
182205
<groupId>com.assembla.scala-incubator</groupId>
@@ -297,7 +320,7 @@
297320
<arg>-feature</arg>
298321
<arg>-dependencyfile</arg>
299322
<arg>${project.build.directory}/.scala_dependencies</arg>
300-
<arg>-Xmax-classfile-name</arg>
323+
<arg>-Xmax-classfile-name</arg>
301324
<arg>128</arg>
302325
</args>
303326
<jvmArgs>
@@ -756,9 +779,5 @@
756779
</plugins>
757780
</build>
758781
</profile>
759-
760782
</profiles>
761-
762-
763-
764783
</project>

sansa-inference-spark/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,24 @@
9292
<version>${jena.version}</version>
9393
</dependency>
9494

95+
<!-- OWL API -->
96+
<dependency>
97+
<groupId>net.sourceforge.owlapi</groupId>
98+
<artifactId>owlapi-api</artifactId>
99+
</dependency>
100+
<dependency>
101+
<groupId>net.sourceforge.owlapi</groupId>
102+
<artifactId>owlapi-apibinding</artifactId>
103+
</dependency>
104+
<dependency>
105+
<groupId>net.sourceforge.owlapi</groupId>
106+
<artifactId>owlapi-impl</artifactId>
107+
</dependency>
108+
<dependency>
109+
<groupId>net.sourceforge.owlapi</groupId>
110+
<artifactId>owlapi-parsers</artifactId>
111+
</dependency>
112+
95113
<!-- Graph API -->
96114
<dependency>
97115
<groupId>com.assembla.scala-incubator</groupId>

0 commit comments

Comments
 (0)