Skip to content

Commit 60876b8

Browse files
committed
updated eSignature dependency to shaded version
1 parent 536b6de commit 60876b8

File tree

2 files changed

+64
-10
lines changed

2 files changed

+64
-10
lines changed

pom.xml

Lines changed: 62 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
35
<modelVersion>4.0.0</modelVersion>
46

57
<parent>
@@ -20,7 +22,10 @@
2022
<java.version>15</java.version>
2123
<oauth2.version>2.6.8</oauth2.version>
2224
<commonsio.version>2.13.0</commonsio.version>
23-
<docusign.version>3.22.0</docusign.version>
25+
<docusign.version>4.3.0</docusign.version>
26+
<swagger-core-version>2.2.8</swagger-core-version>
27+
<jackson-version>2.14.2</jackson-version>
28+
<jersey2.version>3.0.9</jersey2.version>
2429

2530
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2631
<maven.compiler.source>15</maven.compiler.source>
@@ -41,6 +46,54 @@
4146
<artifactId>spring-security-oauth2-autoconfigure</artifactId>
4247
<version>${oauth2.version}</version>
4348
</dependency>
49+
50+
<dependency>
51+
<groupId>org.apache.taglibs</groupId>
52+
<artifactId>taglibs-standard-spec</artifactId>
53+
<version>1.2.5</version>
54+
</dependency>
55+
56+
<dependency>
57+
<groupId>io.swagger.core.v3</groupId>
58+
<artifactId>swagger-annotations</artifactId>
59+
<version>${swagger-core-version}</version>
60+
</dependency>
61+
62+
<dependency>
63+
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
64+
<artifactId>jackson-jakarta-rs-base</artifactId>
65+
<version>${jackson-version}</version>
66+
</dependency>
67+
68+
<dependency>
69+
<groupId>jakarta.ws.rs</groupId>
70+
<artifactId>jakarta.ws.rs-api</artifactId>
71+
<version>3.1.0</version>
72+
</dependency>
73+
74+
<dependency>
75+
<groupId>javax.ws.rs</groupId>
76+
<artifactId>javax.ws.rs-api</artifactId>
77+
<version>2.0.1</version>
78+
</dependency>
79+
80+
<dependency>
81+
<groupId>javax.servlet</groupId>
82+
<artifactId>javax.servlet-api</artifactId>
83+
</dependency>
84+
85+
<dependency>
86+
<groupId>commons-codec</groupId>
87+
<artifactId>commons-codec</artifactId>
88+
<version>1.15</version>
89+
</dependency>
90+
91+
<dependency>
92+
<groupId>org.json</groupId>
93+
<artifactId>json</artifactId>
94+
<version>20210307</version>
95+
</dependency>
96+
4497
<dependency>
4598
<groupId>org.apache.commons</groupId>
4699
<artifactId>commons-lang3</artifactId>
@@ -80,6 +133,13 @@
80133
<groupId>com.docusign</groupId>
81134
<artifactId>docusign-esign-java</artifactId>
82135
<version>${docusign.version}</version>
136+
<classifier>shaded</classifier>
137+
</dependency>
138+
139+
<dependency>
140+
<groupId>org.glassfish.jersey.media</groupId>
141+
<artifactId>jersey-media-json-jackson</artifactId>
142+
<version>${jersey2.version}</version>
83143
</dependency>
84144

85145
<dependency>

src/main/java/com/docusign/core/model/AccountRoleSettingsPatch.java

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import com.docusign.esign.model.AccountRoleSettings;
44
import com.fasterxml.jackson.annotation.JsonProperty;
5-
import io.swagger.annotations.ApiModelProperty;
5+
import io.swagger.v3.oas.annotations.media.Schema;
66

77
public class AccountRoleSettingsPatch extends AccountRoleSettings {
88

@@ -13,15 +13,9 @@ public AccountRoleSettings signingUiVersion(String signingUiVersion) {
1313
this.signingUiVersion = signingUiVersion;
1414
return this;
1515
}
16-
17-
/**
18-
*
19-
* @return signingUiVersion
20-
**/
21-
@ApiModelProperty(example = "null", value = "")
16+
@Schema(example = "null")
2217
public String getSigningUiVersion() {
2318
return signingUiVersion;
2419
}
2520

26-
2721
}

0 commit comments

Comments
 (0)