Skip to content
Permalink
e54cbd5aff
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
164 lines (133 sloc) 5.53 KB
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>rulelearning</groupId>
<artifactId>existential-rules-miner</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<!--Plugin to generate running scripts-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.10</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>assemble</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Extra JVM arguments that will be included in the bin scripts -->
<extraJvmArguments>-Xms1G</extraJvmArguments>
<extraJvmArguments>-Xmx300G</extraJvmArguments>
<!-- set alternative assemble directory -->
<assembleDirectory>assemble</assembleDirectory>
<!--<generateRepository>false</generateRepository>-->
<binFileExtensions>
<unix>.sh</unix>
</binFileExtensions>
<programs>
<program>
<mainClass>data.kg.KGLoader</mainClass>
<id>load_kg</id>
</program>
<program>
<mainClass>cli.MinerCLI</mainClass>
<id>mine</id>
</program>
<program>
<mainClass>evaluators.clients.TridentBindingClient</mainClass>
<id>trident_bind</id>
</program>
<program>
<mainClass>sandbox.RunQueryTrident</mainClass>
<id>execute_query</id>
</program>
</programs>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>MyUtils-mvn-repo</id>
<url>https://raw.github.com/mhmgad/MyUtils/mvn-repo/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.dakusui</groupId>
<artifactId>combinatoradix</artifactId>
<version>0.8.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>26.0-jre</version>
</dependency>
<dependency>
<groupId>de.mpii.exfakt</groupId>
<artifactId>utils</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.elasticsearch/elasticsearch -->
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>5.1.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.searchbox/jest -->
<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest</artifactId>
<version>2.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.eclipse.rdf4j/rdf4j-model -->
<!--<dependency>-->
<!--<groupId>org.eclipse.rdf4j</groupId>-->
<!--<artifactId>rdf4j-model</artifactId>-->
<!--<version>2.4.2</version>-->
<!--</dependency>-->
<!--&lt;!&ndash; https://mvnrepository.com/artifact/org.apache.marmotta/marmotta-commons &ndash;&gt;-->
<!--<dependency>-->
<!--<groupId>org.apache.marmotta</groupId>-->
<!--<artifactId>marmotta-commons</artifactId>-->
<!--<version>3.4.0</version>-->
<!--</dependency>-->
<!--&lt;!&ndash; https://mvnrepository.com/artifact/org.apache.marmotta/marmotta-core &ndash;&gt;-->
<!--<dependency>-->
<!--<groupId>org.apache.marmotta</groupId>-->
<!--<artifactId>marmotta-core</artifactId>-->
<!--<version>3.4.0</version>-->
<!--</dependency>-->
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>27.0-jre</version>
</dependency>
<!--<dependency>-->
<!--<groupId>trident</groupId>-->
<!--<artifactId>trident-1.0</artifactId>-->
<!--<version>1.0</version>-->
<!--</dependency>-->
</dependencies>
</project>