Skip to content
Snippets Groups Projects
Commit 6a4cea46 authored by Ricardo Usbeck's avatar Ricardo Usbeck
Browse files

Ported AGDISTIS back to Java 1.6 in order to support older server

parent 2267bef8
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.aksw</groupId>
<artifactId>AGDISTIS</artifactId>
<version>0.1.0</version>
<version>0.4.0</version>
<packaging>war</packaging>
<!-- BUILD -->
<build>
......@@ -60,7 +60,7 @@
</build>
<!-- PROPERTIES -->
<properties>
<java.version>1.7</java.version>
<java.version>1.6</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<mavenVersion>4.0</mavenVersion>
......
......@@ -14,7 +14,6 @@ import org.aksw.agdistis.graph.BreadthFirstSearch;
import org.aksw.agdistis.graph.HITS;
import org.aksw.agdistis.graph.Node;
import org.aksw.agdistis.util.TripleIndex;
import org.openrdf.repository.RepositoryException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
......@@ -93,7 +92,7 @@ public class NEDAlgo_HITS {
}
}
} catch (RepositoryException | IOException | InterruptedException e) {
} catch (Exception e) {
log.error("AGDISTIS cannot be run on this document.", e);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment