Skip to content

Commit 26daf2d

Browse files
committed
Bump dependencies
1 parent 4d9cd2c commit 26daf2d

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'signing'
55
id 'idea'
66
id 'maven-publish'
7-
id 'io.freefair.lombok' version '8.4'
7+
id 'io.freefair.lombok' version '8.6'
88
}
99

1010

@@ -29,15 +29,15 @@ java {
2929

3030

3131
dependencies {
32-
implementation group: 'com.konghq', name: 'unirest-java', version: '3.14.5' // MIT
32+
implementation group: 'com.konghq', name: 'unirest-java-core', version: '4.4.4' // MIT
3333

34-
implementation group: 'commons-validator', name: 'commons-validator', version: '1.8.0' // Apache 2.0
35-
implementation group: 'commons-net', name: 'commons-net', version: '3.10.0' // Apache 2.0
36-
implementation group: 'commons-io', name: 'commons-io', version: '2.15.1' // Apache 2.0
34+
implementation group: 'commons-validator', name: 'commons-validator', version: '1.9.0' // Apache 2.0
35+
implementation group: 'commons-net', name: 'commons-net', version: '3.11.1' // Apache 2.0
36+
implementation group: 'commons-io', name: 'commons-io', version: '2.16.1' // Apache 2.0
3737

3838
implementation group: 'net.lingala.zip4j', name: 'zip4j', version: '2.11.5' // Apache 2.0
3939

40-
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.36' // MIT
40+
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.13' // MIT
4141
}
4242

4343

src/main/java/ch/unibas/dmi/dbis/chronos/agent/ChronosHttpClient.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ of this software and associated documentation files (the "Software"), to deal
4141
import java.util.concurrent.Future;
4242
import java.util.concurrent.TimeUnit;
4343
import java.util.concurrent.atomic.AtomicInteger;
44-
import kong.unirest.ContentType;
45-
import kong.unirest.HttpResponse;
46-
import kong.unirest.JsonNode;
47-
import kong.unirest.Unirest;
48-
import kong.unirest.UnirestException;
49-
import kong.unirest.json.JSONObject;
44+
import kong.unirest.core.ContentType;
45+
import kong.unirest.core.HttpResponse;
46+
import kong.unirest.core.JsonNode;
47+
import kong.unirest.core.Unirest;
48+
import kong.unirest.core.UnirestException;
49+
import kong.unirest.core.json.JSONObject;
5050
import lombok.extern.slf4j.Slf4j;
5151
import org.apache.commons.net.ftp.FTP;
5252
import org.apache.commons.net.ftp.FTPClient;

src/main/java/ch/unibas/dmi/dbis/chronos/agent/ChronosJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ of this software and associated documentation files (the "Software"), to deal
3939
import javax.xml.xpath.XPathExpression;
4040
import javax.xml.xpath.XPathExpressionException;
4141
import javax.xml.xpath.XPathFactory;
42-
import kong.unirest.json.JSONObject;
42+
import kong.unirest.core.json.JSONObject;
4343
import org.w3c.dom.Document;
4444
import org.w3c.dom.Node;
4545
import org.w3c.dom.NodeList;

src/main/java/ch/unibas/dmi/dbis/chronos/agent/Utils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ of this software and associated documentation files (the "Software"), to deal
3232
import java.util.List;
3333
import java.util.Map;
3434
import java.util.Properties;
35-
import kong.unirest.json.JSONArray;
36-
import kong.unirest.json.JSONObject;
35+
import kong.unirest.core.json.JSONArray;
36+
import kong.unirest.core.json.JSONObject;
3737

3838
class Utils {
3939

0 commit comments

Comments
 (0)