From 5be819d53dcf2882a4eb29ec29f20faa05d306a2 Mon Sep 17 00:00:00 2001 From: Robert Brodie Date: Thu, 20 Jun 2024 12:13:29 -0400 Subject: [PATCH] SP-969 Dependency updates --- pom.xml | 30 ++++++++++---------- src/main/java/com/bitpay/sdk/Config.java | 2 +- src/test/java/com/bitpay/sdk/ConfigTest.java | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index 47e6e936..1004da16 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bitpay bitpay_sdk - 10.0.2 + 10.0.3 jar BitPay @@ -48,8 +48,8 @@ UTF-8 1.8 1.8 - 2.0.12 - 2.17.0 + 2.0.13 + 2.17.1 @@ -68,7 +68,7 @@ org.apache.maven.plugins maven-source-plugin - 3.3.0 + 3.3.1 attach-sources @@ -81,7 +81,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.6.3 + 3.7.0 8 -notimestamp @@ -98,7 +98,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.1.0 + 3.2.4 sign-artifacts @@ -112,7 +112,7 @@ org.jacoco jacoco-maven-plugin - 0.8.11 + 0.8.12 @@ -142,7 +142,7 @@ org.apache.maven.plugins maven-checkstyle-plugin - 3.3.0 + 3.4.0 config/checkstyle/checkstyle.xml @@ -176,7 +176,7 @@ org.codehaus.mojo exec-maven-plugin - 3.2.0 + 3.6.0 setup @@ -209,7 +209,7 @@ org.apache.httpcomponents.client5 httpclient5 - 5.2.1 + 5.2.3 org.apache.httpcomponents @@ -219,7 +219,7 @@ org.apache.httpcomponents.core5 httpcore5 - 5.2.1 + 5.2.4 org.apache.httpcomponents @@ -229,7 +229,7 @@ com.fasterxml.jackson.core jackson-annotations - 2.17.0 + 2.17.1 com.fasterxml.jackson.core @@ -244,7 +244,7 @@ com.fasterxml.jackson.datatype jackson-datatype-jsr310 - 2.16.0 + 2.17.1 org.slf4j @@ -278,12 +278,12 @@ net.bytebuddy byte-buddy - 1.14.12 + 1.14.17 commons-io commons-io - 2.15.1 + 2.16.1 test diff --git a/src/main/java/com/bitpay/sdk/Config.java b/src/main/java/com/bitpay/sdk/Config.java index 2a0b19cf..67c99d08 100644 --- a/src/main/java/com/bitpay/sdk/Config.java +++ b/src/main/java/com/bitpay/sdk/Config.java @@ -34,7 +34,7 @@ public class Config { /** * BitPay Plugin Info Version. */ - public static final String BITPAY_PLUGIN_INFO = "BitPay_Java_Client_v10.0.2"; + public static final String BITPAY_PLUGIN_INFO = "BitPay_Java_Client_v10.0.3"; /** * BitPay Api Frame. */ diff --git a/src/test/java/com/bitpay/sdk/ConfigTest.java b/src/test/java/com/bitpay/sdk/ConfigTest.java index ed81f5b9..7b1516fd 100644 --- a/src/test/java/com/bitpay/sdk/ConfigTest.java +++ b/src/test/java/com/bitpay/sdk/ConfigTest.java @@ -58,7 +58,7 @@ public void it_should_returns_bitpay_api_version() { @Test public void it_should_returns_bitpay_plugin_info() { - Assertions.assertTrue(Config.BITPAY_PLUGIN_INFO.contains("BitPay_Java_Client_v10.0.2")); + Assertions.assertTrue(Config.BITPAY_PLUGIN_INFO.contains("BitPay_Java_Client_v10.0.3")); } @Test