Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update dependencies. #114

Merged
merged 1 commit into from
Oct 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions libraries.gradle
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
ext {
jposVersion = '2.1.4-SNAPSHOT'
slf4jVersion = '1.7.21'
slf4jVersion = '1.7.28'
logbackVersion = '1.2.3'
hibernateVersion = '5.4.6.Final'
geronimoVersion = '1.1.1'
jettyVersion = '9.4.15.v20190215'
servletApiVersion = '3.1.0'
jettyVersion = '9.4.20.v20190813'
servletApiVersion = '4.0.1'
websocketApiVersion = '1.1'
jgroupsVersion = '4.0.16.Final'
jgroupsVersion = '4.1.5.Final'
jaxrsVersion = '2.0.1'
jsonSchemaVersion = '2.2.10'
guavaVersion = '27.1-jre'
jacksonVersion = '2.10.0.pr1'
groovyVersion = '2.5.6'
jsonSchemaVersion = '2.2.11'
guavaVersion = '28.1-jre'
jacksonVersion = '2.10.0.pr3'
groovyVersion = '2.5.8'
restAssuredVersion = '2.9.0'
vaadinVersion = '8.8.5'
nettyVersion = '4.1.42.Final'
httpAsyncClientVersion = '4.1.4'
mysqlJDBCVersion = '8.0.15'
c3p0Version = '0.9.5.3'
mysqlJDBCVersion = '8.0.17'
c3p0Version = '0.9.5.4'
flywaydbVersion = '6.0.4'

libraries = [
//jUnit (Tests)
junit: 'org.junit.jupiter:junit-jupiter:5.5.0',
junit: 'org.junit.jupiter:junit-jupiter:5.5.2',

//jPOS
jpos: "org.jpos:jpos:${jposVersion}",

//Apache Commons
commons_lang: 'org.apache.commons:commons-lang3:3.4',
commons_lang: 'org.apache.commons:commons-lang3:3.9',
commons_logging: 'commons-logging:commons-logging:1.2',

//SLF4J and logback Stuff
Expand All @@ -41,7 +41,7 @@ ext {
logback: "ch.qos.logback:logback-classic:${logbackVersion}",

//JODA-Time
joda_time: 'joda-time:joda-time:2.10.2',
joda_time: 'joda-time:joda-time:2.10.4',

//Hibernate
hibernate_core: "org.hibernate:hibernate-core:${hibernateVersion}",
Expand All @@ -52,19 +52,19 @@ ext {
jta: "org.apache.geronimo.specs:geronimo-jta_1.1_spec:${geronimoVersion}",

//Supported Databases
jdbcH2: 'com.h2database:h2:1.4.189',
jdbcH2: 'com.h2database:h2:1.4.199',
jdbcMysql: "mysql:mysql-connector-java:${mysqlJDBCVersion}",
jdbcPostgresql: 'org.postgresql:postgresql:42.2.5',
jdbcMssql: 'com.microsoft.sqlserver:mssql-jdbc:7.2.2.jre8',
jdbcPostgresql: 'org.postgresql:postgresql:42.2.8',
jdbcMssql: 'com.microsoft.sqlserver:mssql-jdbc:7.4.1.jre8',

//Freemarker
freemarker: 'org.freemarker:freemarker:[2.3.20,2.4)',
freemarker: 'org.freemarker:freemarker:[2.3.29,2.4)',

//Mail
javax_mail: 'javax.mail:mail:1.4.7',
javax_mail: 'javax.mail:javax.mail-api:1.6.2',

//SSHD
sshd: 'org.apache.sshd:sshd-core:0.14.0',
sshd: 'org.apache.sshd:sshd-core:2.3.0',

//Servlet API
servlet_api: "javax.servlet:javax.servlet-api:${servletApiVersion}",
Expand All @@ -90,7 +90,7 @@ ext {
jetty_rewrite: "org.eclipse.jetty:jetty-rewrite:${jettyVersion}",

// Quartz Scheduler
quartz: 'org.quartz-scheduler:quartz:2.2.1',
quartz: 'org.quartz-scheduler:quartz:2.3.1',

// JGroups
jgroups: "org.jgroups:jgroups:${jgroupsVersion}",
Expand All @@ -108,7 +108,7 @@ ext {
nettyCodecHttp: "io.netty:netty-codec-http:${nettyVersion}",

// RestAssured
restAssured: "com.jayway.restassured:rest-assured:2.9.0",
restAssured: "io.rest-assured:rest-assured:4.1.1",

jsonSchemaValidator: "com.github.java-json-tools:json-schema-validator:${jsonSchemaVersion}",
guava: "com.google.guava:guava:${guavaVersion}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.jayway.restassured.RestAssured;
import com.jayway.restassured.builder.RequestSpecBuilder;
import io.restassured.RestAssured;
import io.restassured.builder.RequestSpecBuilder;
import org.bouncycastle.util.encoders.Base64;
import org.jpos.iso.ISOUtil;
import org.jpos.q2.Q2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.security.NoSuchAlgorithmException;
import java.util.UUID;

import static com.jayway.restassured.RestAssured.given;
import static io.restassured.RestAssured.given;
import static org.hamcrest.Matchers.any;
import static org.hamcrest.Matchers.is;

Expand Down
6 changes: 3 additions & 3 deletions modules/qrest/src/test/java/org/jpos/qrest/RestTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@

package org.jpos.qrest;

import com.jayway.restassured.RestAssured;
import com.jayway.restassured.builder.RequestSpecBuilder;
import io.restassured.RestAssured;
import io.restassured.builder.RequestSpecBuilder;
import org.jpos.q2.Q2;
import org.jpos.util.NameRegistrar;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;

import static com.jayway.restassured.RestAssured.given;
import static io.restassured.RestAssured.given;
import static io.netty.handler.codec.http.HttpHeaderValues.APPLICATION_JSON;

import static org.hamcrest.Matchers.*;
Expand Down