Skip to content

Commit 8dd4ac7

Browse files
authored
Merge pull request #141 from docusign/maintenance-august-2024
Maintenance August 2024
2 parents c63a6dd + 5151e88 commit 8dd4ac7

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

JWT Console App/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<maven.compiler.source>11</maven.compiler.source>
1717
<maven.compiler.target>11</maven.compiler.target>
18-
<esignature.version>4.6.0-RC1</esignature.version>
18+
<esignature.version>6.0.0</esignature.version>
1919
</properties>
2020

2121
<dependencies>
@@ -54,7 +54,7 @@
5454
<plugin>
5555
<groupId>org.apache.maven.plugins</groupId>
5656
<artifactId>maven-compiler-plugin</artifactId>
57-
<version>3.9.0</version>
57+
<version>3.13.0</version>
5858
<configuration>
5959
<source>11</source>
6060
<target>11</target>
@@ -64,7 +64,7 @@
6464
<!-- Build an executable JAR -->
6565
<groupId>org.apache.maven.plugins</groupId>
6666
<artifactId>maven-jar-plugin</artifactId>
67-
<version>3.2.1</version>
67+
<version>3.4.2</version>
6868
<configuration>
6969
<archive>
7070
<manifest>
@@ -78,4 +78,4 @@
7878
</plugins>
7979
</build>
8080

81-
</project>
81+
</project>

Quick_ACG/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<oauth2.version>2.5.6</oauth2.version>
2121
<commonsio.version>2.16.1</commonsio.version>
2222
<docusign.version>3.17.1</docusign.version>
23-
<esignature.version>4.6.0-RC1</esignature.version>
23+
<esignature.version>6.0.0</esignature.version>
2424
</properties>
2525

2626
<dependencies>
@@ -230,7 +230,7 @@
230230
<dependency>
231231
<groupId>org.bouncycastle</groupId>
232232
<artifactId>bcprov-jdk15on</artifactId>
233-
<version>1.69</version>
233+
<version>1.78</version>
234234
</dependency>
235235

236236
<dependency>
@@ -248,7 +248,7 @@
248248
<dependency>
249249
<groupId>com.nimbusds</groupId>
250250
<artifactId>nimbus-jose-jwt</artifactId>
251-
<version>9.37.3</version>
251+
<version>9.40</version>
252252
</dependency>
253253

254254
<dependency>
@@ -260,15 +260,15 @@
260260
<dependency>
261261
<groupId>ch.qos.logback</groupId>
262262
<artifactId>logback-core</artifactId>
263-
<version>1.3.14</version>
263+
<version>1.5.6</version>
264264
</dependency>
265265

266266
<dependency>
267267
<groupId>ch.qos.logback</groupId>
268268
<artifactId>logback-classic</artifactId>
269-
<version>1.3.14</version>
269+
<version>1.5.6</version>
270270
<scope>test</scope>
271271
</dependency>
272272
</dependencies>
273273
</dependencyManagement>
274-
</project>
274+
</project>

pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@
2626
<oauth2.version>2.5.6</oauth2.version>
2727
<commonsio.version>2.16.1</commonsio.version>
2828

29-
<esignature.version>5.0.0-RC1</esignature.version>
29+
<esignature.version>6.0.0</esignature.version>
3030
<rooms.version>1.4.3</rooms.version>
3131
<click.version>1.5.0</click.version>
3232
<monitor.version>1.4.0</monitor.version>
3333
<admin.version>1.3.0</admin.version>
3434
<webforms.version>1.0.2-RC12</webforms.version>
3535
<maestro.version>2.0.0-RC1</maestro.version>
36-
<swagger-core-version>2.2.21</swagger-core-version>
37-
<jackson-version>2.17.0</jackson-version>
38-
<jersey2.version>3.1.6</jersey2.version>
36+
<swagger-core-version>2.2.22</swagger-core-version>
37+
<jackson-version>2.17.2</jackson-version>
38+
<jersey2.version>3.1.8</jersey2.version>
3939
</properties>
4040

4141
<dependencies>
@@ -57,13 +57,13 @@
5757
<dependency>
5858
<groupId>io.github.cdimascio</groupId>
5959
<artifactId>dotenv-java</artifactId>
60-
<version>3.0.0</version>
60+
<version>3.0.1</version>
6161
</dependency>
6262

6363
<dependency>
6464
<groupId>org.projectlombok</groupId>
6565
<artifactId>lombok</artifactId>
66-
<version>1.18.32</version>
66+
<version>1.18.34</version>
6767
<optional>true</optional>
6868
</dependency>
6969
<dependency>
@@ -123,7 +123,7 @@
123123
<dependency>
124124
<groupId>commons-codec</groupId>
125125
<artifactId>commons-codec</artifactId>
126-
<version>1.16.1</version>
126+
<version>1.17.1</version>
127127
</dependency>
128128

129129
<dependency>
@@ -234,7 +234,7 @@
234234
<plugin>
235235
<groupId>org.apache.maven.plugins</groupId>
236236
<artifactId>maven-checkstyle-plugin</artifactId>
237-
<version>3.1.2</version>
237+
<version>3.4.0</version>
238238
<configuration>
239239
<configLocation>checkstyle.xml</configLocation>
240240
<violationSeverity>warning</violationSeverity>
@@ -249,7 +249,7 @@
249249
<dependency>
250250
<groupId>org.bouncycastle</groupId>
251251
<artifactId>bcprov-jdk15on</artifactId>
252-
<version>1.69</version>
252+
<version>1.78</version>
253253
</dependency>
254254

255255
<dependency>
@@ -273,7 +273,7 @@
273273
<dependency>
274274
<groupId>com.nimbusds</groupId>
275275
<artifactId>nimbus-jose-jwt</artifactId>
276-
<version>9.37.3</version>
276+
<version>9.40</version>
277277
</dependency>
278278

279279
<dependency>
@@ -285,13 +285,13 @@
285285
<dependency>
286286
<groupId>ch.qos.logback</groupId>
287287
<artifactId>logback-core</artifactId>
288-
<version>1.3.14</version>
288+
<version>1.5.6</version>
289289
</dependency>
290290

291291
<dependency>
292292
<groupId>ch.qos.logback</groupId>
293293
<artifactId>logback-classic</artifactId>
294-
<version>1.3.14</version>
294+
<version>1.5.6</version>
295295
<scope>test</scope>
296296
</dependency>
297297
</dependencies>

0 commit comments

Comments
 (0)