|
11 | 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
12 | 12 | <maven.compiler.source>1.8</maven.compiler.source>
|
13 | 13 | <maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
|
| 14 | + <jackson.version>2.13.2</jackson.version> |
14 | 15 | </properties>
|
15 | 16 |
|
16 | 17 | <dependencyManagement>
|
|
37 | 38 | <version>5.9.1</version>
|
38 | 39 | <scope>test</scope>
|
39 | 40 | </dependency>
|
| 41 | + <dependency> |
| 42 | + <groupId>org.mortbay.jetty</groupId> |
| 43 | + <artifactId>jetty-util</artifactId> |
| 44 | + <version>6.1.25</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.json</groupId> |
| 48 | + <artifactId>json</artifactId> |
| 49 | + <version>20220924</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.ow2.asm</groupId> |
| 53 | + <artifactId>asm</artifactId> |
| 54 | + <version>9.2</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 58 | + <artifactId>jackson-databind</artifactId> |
| 59 | + <version>${jackson.version}</version> |
| 60 | + </dependency> |
40 | 61 | </dependencies>
|
41 | 62 |
|
42 | 63 | <build>
|
|
0 commit comments