Skip to content

Commit 5be819d

Browse files
committed
SP-969 Dependency updates
1 parent 720d908 commit 5be819d

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

pom.xml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.bitpay</groupId>
88
<artifactId>bitpay_sdk</artifactId>
9-
<version>10.0.2</version>
9+
<version>10.0.3</version>
1010
<packaging>jar</packaging>
1111

1212
<name>BitPay</name>
@@ -48,8 +48,8 @@
4848
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4949
<maven.compiler.source>1.8</maven.compiler.source>
5050
<maven.compiler.target>1.8</maven.compiler.target>
51-
<slf4j.version>2.0.12</slf4j.version>
52-
<jackson.version>2.17.0</jackson.version>
51+
<slf4j.version>2.0.13</slf4j.version>
52+
<jackson.version>2.17.1</jackson.version>
5353
</properties>
5454

5555
<distributionManagement>
@@ -68,7 +68,7 @@
6868
<plugin>
6969
<groupId>org.apache.maven.plugins</groupId>
7070
<artifactId>maven-source-plugin</artifactId>
71-
<version>3.3.0</version>
71+
<version>3.3.1</version>
7272
<executions>
7373
<execution>
7474
<id>attach-sources</id>
@@ -81,7 +81,7 @@
8181
<plugin>
8282
<groupId>org.apache.maven.plugins</groupId>
8383
<artifactId>maven-javadoc-plugin</artifactId>
84-
<version>3.6.3</version>
84+
<version>3.7.0</version>
8585
<configuration>
8686
<source>8</source>
8787
<additionalOptions>-notimestamp</additionalOptions>
@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>org.apache.maven.plugins</groupId>
100100
<artifactId>maven-gpg-plugin</artifactId>
101-
<version>3.1.0</version>
101+
<version>3.2.4</version>
102102
<executions>
103103
<execution>
104104
<id>sign-artifacts</id>
@@ -112,7 +112,7 @@
112112
<plugin>
113113
<groupId>org.jacoco</groupId>
114114
<artifactId>jacoco-maven-plugin</artifactId>
115-
<version>0.8.11</version>
115+
<version>0.8.12</version>
116116
<executions>
117117
<execution>
118118
<goals>
@@ -142,7 +142,7 @@
142142
<plugin>
143143
<groupId>org.apache.maven.plugins</groupId>
144144
<artifactId>maven-checkstyle-plugin</artifactId>
145-
<version>3.3.0</version>
145+
<version>3.4.0</version>
146146
<configuration>
147147
<configLocation>config/checkstyle/checkstyle.xml</configLocation>
148148
</configuration>
@@ -176,7 +176,7 @@
176176
<plugin>
177177
<groupId>org.codehaus.mojo</groupId>
178178
<artifactId>exec-maven-plugin</artifactId>
179-
<version>3.2.0</version>
179+
<version>3.6.0</version>
180180
<executions>
181181
<execution>
182182
<id>setup</id>
@@ -209,7 +209,7 @@
209209
<dependency>
210210
<groupId>org.apache.httpcomponents.client5</groupId>
211211
<artifactId>httpclient5</artifactId>
212-
<version>5.2.1</version>
212+
<version>5.2.3</version>
213213
</dependency>
214214
<dependency>
215215
<groupId>org.apache.httpcomponents</groupId>
@@ -219,7 +219,7 @@
219219
<dependency>
220220
<groupId>org.apache.httpcomponents.core5</groupId>
221221
<artifactId>httpcore5</artifactId>
222-
<version>5.2.1</version>
222+
<version>5.2.4</version>
223223
</dependency>
224224
<dependency>
225225
<groupId>org.apache.httpcomponents</groupId>
@@ -229,7 +229,7 @@
229229
<dependency>
230230
<groupId>com.fasterxml.jackson.core</groupId>
231231
<artifactId>jackson-annotations</artifactId>
232-
<version>2.17.0</version>
232+
<version>2.17.1</version>
233233
</dependency>
234234
<dependency>
235235
<groupId>com.fasterxml.jackson.core</groupId>
@@ -244,7 +244,7 @@
244244
<dependency>
245245
<groupId>com.fasterxml.jackson.datatype</groupId>
246246
<artifactId>jackson-datatype-jsr310</artifactId>
247-
<version>2.16.0</version>
247+
<version>2.17.1</version>
248248
</dependency>
249249
<dependency>
250250
<groupId>org.slf4j</groupId>
@@ -278,12 +278,12 @@
278278
<dependency>
279279
<groupId>net.bytebuddy</groupId>
280280
<artifactId>byte-buddy</artifactId>
281-
<version>1.14.12</version>
281+
<version>1.14.17</version>
282282
</dependency>
283283
<dependency>
284284
<groupId>commons-io</groupId>
285285
<artifactId>commons-io</artifactId>
286-
<version>2.15.1</version>
286+
<version>2.16.1</version>
287287
<scope>test</scope>
288288
</dependency>
289289
</dependencies>

src/main/java/com/bitpay/sdk/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class Config {
3434
/**
3535
* BitPay Plugin Info Version.
3636
*/
37-
public static final String BITPAY_PLUGIN_INFO = "BitPay_Java_Client_v10.0.2";
37+
public static final String BITPAY_PLUGIN_INFO = "BitPay_Java_Client_v10.0.3";
3838
/**
3939
* BitPay Api Frame.
4040
*/

src/test/java/com/bitpay/sdk/ConfigTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void it_should_returns_bitpay_api_version() {
5858

5959
@Test
6060
public void it_should_returns_bitpay_plugin_info() {
61-
Assertions.assertTrue(Config.BITPAY_PLUGIN_INFO.contains("BitPay_Java_Client_v10.0.2"));
61+
Assertions.assertTrue(Config.BITPAY_PLUGIN_INFO.contains("BitPay_Java_Client_v10.0.3"));
6262
}
6363

6464
@Test

0 commit comments

Comments
 (0)