Skip to content

Commit

Permalink
Updated many dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
balhoff committed May 11, 2020
1 parent 5518cab commit 34d29f0
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 32 deletions.
2 changes: 1 addition & 1 deletion Golr-Client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.6</version>
<version>4.5.12</version>
</dependency>
</dependencies>
</project>
6 changes: 1 addition & 5 deletions OWLTools-Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,6 @@
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
</dependency>
<dependency>
<groupId>org.geneontology</groupId>
<artifactId>expression-materializing-reasoner</artifactId>
Expand All @@ -118,7 +114,7 @@
<dependency>
<groupId>org.geneontology</groupId>
<artifactId>obographs</artifactId>
<version>0.1.0</version>
<version>0.2.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
33 changes: 11 additions & 22 deletions OWLTools-Parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<owlapi.version>4.5.6</owlapi.version>
<slf4j.version>1.7.10</slf4j.version>
<owlapi.version>4.5.6</owlapi.version> <!-- Needs fix to upgrade to 4.5.16; see failing test-->
<slf4j.version>1.7.30</slf4j.version>
</properties>

<build>
Expand Down Expand Up @@ -131,7 +131,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>4.13</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -173,7 +173,7 @@
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>org.semanticweb.hermit</artifactId>
<version>1.3.8.413</version>
<version>1.4.5.456</version>
</dependency>
<dependency>
<groupId>org.bbop</groupId>
Expand All @@ -188,7 +188,7 @@
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.8.2</version>
<version>1.10.7</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -209,22 +209,22 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.2</version>
<version>2.6</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1-fixit</version> <!-- This version does not contain a zero day exploit class InvokeTransformer -->
<version>3.2.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
<version>3.10</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.3</version>
<version>3.6.1</version>
</dependency>
<dependency>
<groupId>org.semanticweb.elk</groupId>
Expand All @@ -234,24 +234,13 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
<version>2.8.6</version>
</dependency>
<dependency>
<groupId>rhino</groupId>
<artifactId>js</artifactId>
<version>1.7R2</version>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>0.9.93</version>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.geneontology</groupId>
<artifactId>expression-materializing-reasoner</artifactId>
Expand All @@ -270,7 +259,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
<version>29.0-jre</version>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
Expand Down
2 changes: 1 addition & 1 deletion OWLTools-Sim/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>com.googlecode.javaewah</groupId>
<artifactId>JavaEWAH</artifactId>
<version>0.7.7</version>
<version>1.1.7</version>
</dependency>
</dependencies>
</project>
4 changes: 3 additions & 1 deletion OWLTools-Sim/src/main/java/owltools/sim2/FastOwlSim.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
import com.googlecode.javaewah.EWAHCompressedBitmap;
import com.googlecode.javaewah.IntIterator;

import static java.nio.charset.StandardCharsets.UTF_8;

/**
* Faster implementation of OwlSim
*
Expand Down Expand Up @@ -2102,7 +2104,7 @@ public void loadLCSCache(String fileName) throws IOException {

FileInputStream s = new FileInputStream(fileName);
//List<String> lines = IOUtils.readLines(s);
LineIterator itr = IOUtils.lineIterator(s, null);
LineIterator itr = IOUtils.lineIterator(s, UTF_8);
while (itr.hasNext()) {
String line = itr.nextLine();
String[] vals = line.split("\t");
Expand Down
4 changes: 2 additions & 2 deletions OWLTools-Solr/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<dependency>
<artifactId>solr-solrj</artifactId>
<groupId>org.apache.solr</groupId>
<version>3.6.0</version>
<version>3.6.2</version>
<exclusions>
<exclusion>
<artifactId>slf4j-api</artifactId>
Expand All @@ -48,7 +48,7 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.10</version>
<version>1.26</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down

0 comments on commit 34d29f0

Please sign in to comment.