|
1 | 1 | <?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"> |
3 | 5 | <modelVersion>4.0.0</modelVersion> |
4 | 6 |
|
5 | 7 | <parent> |
|
19 | 21 | <properties> |
20 | 22 | <java.version>15</java.version> |
21 | 23 | <oauth2.version>2.6.8</oauth2.version> |
22 | | - <commonsio.version>2.7</commonsio.version> |
23 | | - <docusign.version>3.22.0</docusign.version> |
| 24 | + <commonsio.version>2.13.0</commonsio.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> |
24 | 29 |
|
25 | 30 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
26 | 31 | <maven.compiler.source>15</maven.compiler.source> |
|
41 | 46 | <artifactId>spring-security-oauth2-autoconfigure</artifactId> |
42 | 47 | <version>${oauth2.version}</version> |
43 | 48 | </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 | + |
44 | 97 | <dependency> |
45 | 98 | <groupId>org.apache.commons</groupId> |
46 | 99 | <artifactId>commons-lang3</artifactId> |
|
80 | 133 | <groupId>com.docusign</groupId> |
81 | 134 | <artifactId>docusign-esign-java</artifactId> |
82 | 135 | <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> |
83 | 143 | </dependency> |
84 | 144 |
|
85 | 145 | <dependency> |
86 | 146 | <groupId>org.projectlombok</groupId> |
87 | 147 | <artifactId>lombok</artifactId> |
88 | | - <version>1.18.24</version> |
| 148 | + <version>1.18.28</version> |
89 | 149 | <scope>compile</scope> |
90 | 150 | </dependency> |
91 | 151 | </dependencies> |
|
96 | 156 | <plugin> |
97 | 157 | <groupId>org.apache.maven.plugins</groupId> |
98 | 158 | <artifactId>maven-compiler-plugin</artifactId> |
99 | | - <version>3.10.1</version> |
| 159 | + <version>3.11.0</version> |
100 | 160 | </plugin> |
101 | 161 | </plugins> |
102 | 162 | </pluginManagement> |
|
0 commit comments