Skip to content

Commit

Permalink
Release 1.3.0. Resolves #17,#18,#19,#20.
Browse files Browse the repository at this point in the history
  • Loading branch information
khituras committed Dec 18, 2022
1 parent 06209be commit 865ebda
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion julielab-concept-creation-bioportal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.julielab</groupId>
<artifactId>julielab-concept-db-manager</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>julielab-concept-creation-bioportal</artifactId>
<name>JULIE Lab Concept Creation for BioPortal</name>
Expand Down
2 changes: 1 addition & 1 deletion julielab-concept-creation-famplex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>julielab-concept-db-manager</artifactId>
<groupId>de.julielab</groupId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>JULIE Lab Concept Creation for FamPlex</name>
Expand Down
2 changes: 1 addition & 1 deletion julielab-concept-creation-hgnc-groups/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>julielab-concept-db-manager</artifactId>
<groupId>de.julielab</groupId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>JULIE Lab Concept Creation HGNC Groups</name>
Expand Down
4 changes: 2 additions & 2 deletions julielab-concept-creation-mesh/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.julielab</groupId>
<artifactId>julielab-concept-db-manager</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>julielab-concept-creation-mesh</artifactId>
<name>JULIE Lab Concept Creation Provider MeSH</name>
Expand All @@ -13,7 +13,7 @@
<dependency>
<groupId>de.julielab</groupId>
<artifactId>julielab-concept-db-manager-core</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
Expand Down
2 changes: 1 addition & 1 deletion julielab-concept-creation-ncbi-gene/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.julielab</groupId>
<artifactId>julielab-concept-db-manager</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>julielab-concept-creation-ncbi-gene</artifactId>
<name>JULIE Lab Concept Creation for NCBI Gene</name>
Expand Down
2 changes: 1 addition & 1 deletion julielab-concept-db-application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.julielab</groupId>
<artifactId>julielab-concept-db-manager</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>julielab-concept-db-application</artifactId>
<name>JULIE Lab Concept DB Manager Application</name>
Expand Down
2 changes: 1 addition & 1 deletion julielab-concept-db-manager-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.julielab</groupId>
<artifactId>julielab-concept-db-manager</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>julielab-concept-db-manager-core</artifactId>
<name>JULIE Lab Concept Database Manager Core</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
import org.apache.http.ParseException;
import org.apache.http.client.methods.*;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.NoConnectionReuseStrategy;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
import org.apache.http.util.EntityUtils;
Expand All @@ -40,7 +42,9 @@ public class HttpConnectionService {

public HttpConnectionService() {
PoolingHttpClientConnectionManager connManager = new PoolingHttpClientConnectionManager();
client = HttpClients.custom().setConnectionManager(connManager).build();
// NoConnectionReuseStrategy as an attempt to solve the issue
// https://stackoverflow.com/questions/10558791/apache-httpclient-interim-error-nohttpresponseexception
client = HttpClientBuilder.create().setConnectionManager(connManager).setConnectionReuseStrategy(new NoConnectionReuseStrategy()).build();
}

public static HttpConnectionService getInstance() {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<version>2.5.0</version>
</parent>
<artifactId>julielab-concept-db-manager</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<name>JULIE Lab Concept Database Manager</name>
<description>This project is a collection of tools with the goal to import ontological concepts into a graph
database. The graph database then allows to traverse the imported data with a graph-specific query language. In
Expand Down

0 comments on commit 865ebda

Please sign in to comment.