diff --git a/.vscode/settings.json b/.vscode/settings.json
index 11331294..4b99a0b9 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,3 +1,4 @@
{
- "java.configuration.updateBuildConfiguration": "automatic"
+ "java.configuration.updateBuildConfiguration": "automatic",
+ "java.compile.nullAnalysis.mode": "automatic"
}
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 996aabe9..3a1f4359 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.bitpay
bitpay_sdk
- 10.1.1
+ 10.1.2
jar
BitPay
@@ -48,8 +48,8 @@
UTF-8
1.8
1.8
- 2.0.13
- 2.17.2
+ 2.0.16
+ 2.18.2
@@ -81,7 +81,7 @@
org.apache.maven.plugins
maven-javadoc-plugin
- 3.10.1
+ 3.11.2
-notimestamp
@@ -99,7 +99,7 @@
org.apache.maven.plugins
maven-gpg-plugin
- 3.2.4
+ 3.2.7
sign-artifacts
@@ -132,7 +132,7 @@
org.apache.maven.plugins
maven-surefire-plugin
- 3.5.1
+ 3.5.2
@{argLine} -Duser.timezone=UTC
@@ -143,7 +143,7 @@
org.apache.maven.plugins
maven-checkstyle-plugin
- 3.4.0
+ 3.6.0
config/checkstyle/checkstyle.xml
@@ -177,7 +177,7 @@
org.codehaus.mojo
exec-maven-plugin
- 3.3.0
+ 3.5.0
setup
@@ -194,7 +194,7 @@
org.bitcoinj
bitcoinj-core
- 0.16.2
+ 0.16.3
compile
@@ -220,7 +220,7 @@
org.apache.httpcomponents.core5
httpcore5
- 5.3
+ 5.3.1
org.apache.httpcomponents
@@ -260,7 +260,7 @@
org.junit.jupiter
junit-jupiter-engine
- 5.11.2
+ 5.11.3
test
@@ -279,12 +279,12 @@
net.bytebuddy
byte-buddy
- 1.14.18
+ 1.15.10
commons-io
commons-io
- 2.16.1
+ 2.18.0
test
diff --git a/src/main/java/com/bitpay/sdk/Config.java b/src/main/java/com/bitpay/sdk/Config.java
index 246e7040..36bdeb2d 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.1.1";
+ public static final String BITPAY_PLUGIN_INFO = "BitPay_Java_Client_v10.1.2";
/**
* BitPay Api Frame.
*/
diff --git a/src/test/java/com/bitpay/sdk/ConfigTest.java b/src/test/java/com/bitpay/sdk/ConfigTest.java
index 104abc55..8713691f 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.1.1"));
+ Assertions.assertTrue(Config.BITPAY_PLUGIN_INFO.contains("BitPay_Java_Client_v10.1.2"));
}
@Test