Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 7934a50

Browse files
committed
Update maven dependencies
1 parent aef42dc commit 7934a50

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<properties>
1414
<java.version>1.8</java.version>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<sprint.boot.version>1.2.4.RELEASE</sprint.boot.version>
16+
<sprint.boot.version>1.3.3.RELEASE</sprint.boot.version>
1717
<mainClass>de.linkvt.bachelor.Application</mainClass>
1818
</properties>
1919

@@ -123,7 +123,7 @@
123123
<dependency>
124124
<groupId>net.sourceforge.owlapi</groupId>
125125
<artifactId>owlapi-distribution</artifactId>
126-
<version>4.1.1</version>
126+
<version>5.0.1</version>
127127
</dependency>
128128
<dependency>
129129
<groupId>org.springframework.boot</groupId>
@@ -157,17 +157,17 @@
157157
<groupId>org.hsqldb</groupId>
158158
<artifactId>hsqldb</artifactId>
159159
<scope>runtime</scope>
160-
<version>2.3.2</version>
160+
<version>2.3.3</version>
161161
</dependency>
162162
<dependency>
163163
<groupId>org.postgresql</groupId>
164164
<artifactId>postgresql</artifactId>
165-
<version>9.4-1201-jdbc41</version>
165+
<version>9.4.1208.jre7</version>
166166
</dependency>
167167
<dependency>
168168
<groupId>com.zaxxer</groupId>
169169
<artifactId>HikariCP</artifactId>
170-
<version>2.3.9</version>
170+
<version>2.4.6</version>
171171
<scope>compile</scope>
172172
</dependency>
173173
<dependency>
@@ -177,7 +177,7 @@
177177
<dependency>
178178
<groupId>org.apache.commons</groupId>
179179
<artifactId>commons-collections4</artifactId>
180-
<version>4.0</version>
180+
<version>4.1</version>
181181
</dependency>
182182
</dependencies>
183183

src/main/java/de/linkvt/bachelor/features/annotations/ontology/dc/DcIdentifierFeature.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package de.linkvt.bachelor.features.annotations.ontology.dc;
22

3-
import com.google.common.base.Optional;
4-
53
import de.linkvt.bachelor.features.Feature;
64
import de.linkvt.bachelor.features.FeatureCategory;
75
import de.linkvt.bachelor.features.annotations.ontology.OntologyConstants;
@@ -14,6 +12,8 @@
1412
import org.springframework.beans.factory.annotation.Autowired;
1513
import org.springframework.stereotype.Component;
1614

15+
import java.util.Optional;
16+
1717
@Component
1818
public class DcIdentifierFeature extends Feature {
1919

src/main/java/de/linkvt/bachelor/features/annotations/ontology/dcterms/DcTermsIdentifierFeature.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package de.linkvt.bachelor.features.annotations.ontology.dcterms;
22

3-
import com.google.common.base.Optional;
4-
53
import de.linkvt.bachelor.features.Feature;
64
import de.linkvt.bachelor.features.FeatureCategory;
75
import de.linkvt.bachelor.features.annotations.ontology.OntologyConstants;
@@ -14,6 +12,8 @@
1412
import org.springframework.beans.factory.annotation.Autowired;
1513
import org.springframework.stereotype.Component;
1614

15+
import java.util.Optional;
16+
1717
@Component
1818
public class DcTermsIdentifierFeature extends Feature {
1919

0 commit comments

Comments
 (0)