Navigation Menu

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

Commit

Permalink
Added OWL API dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickwestphal committed Nov 16, 2017
1 parent 6f7a29d commit 010d552
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 5 deletions.
29 changes: 24 additions & 5 deletions pom.xml
Expand Up @@ -81,6 +81,7 @@
<MaxPermGen>512m</MaxPermGen>
<CodeCacheSize>512m</CodeCacheSize>
<gpg.keyname>AKSW</gpg.keyname>
<owlapi.version>5.1.0</owlapi.version>
</properties>

<prerequisites>
Expand Down Expand Up @@ -177,6 +178,28 @@
<version>${jena.version}</version>
</dependency>

<!-- OWL API -->
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-api</artifactId>
<version>${owlapi.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-apibinding</artifactId>
<version>${owlapi.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-impl</artifactId>
<version>${owlapi.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parsers</artifactId>
<version>${owlapi.version}</version>
</dependency>

<!-- Graph API -->
<dependency>
<groupId>com.assembla.scala-incubator</groupId>
Expand Down Expand Up @@ -297,7 +320,7 @@
<arg>-feature</arg>
<arg>-dependencyfile</arg>
<arg>${project.build.directory}/.scala_dependencies</arg>
<arg>-Xmax-classfile-name</arg>
<arg>-Xmax-classfile-name</arg>
<arg>128</arg>
</args>
<jvmArgs>
Expand Down Expand Up @@ -756,9 +779,5 @@
</plugins>
</build>
</profile>

</profiles>



</project>
18 changes: 18 additions & 0 deletions sansa-inference-spark/pom.xml
Expand Up @@ -92,6 +92,24 @@
<version>${jena.version}</version>
</dependency>

<!-- OWL API -->
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-api</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-apibinding</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-impl</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parsers</artifactId>
</dependency>

<!-- Graph API -->
<dependency>
<groupId>com.assembla.scala-incubator</groupId>
Expand Down

0 comments on commit 010d552

Please sign in to comment.