Skip to content

Commit 8a50c48

Browse files
committed
Add JSON parser
1 parent 9db3f05 commit 8a50c48

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<maven.compiler.source>1.8</maven.compiler.source>
1313
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
14+
<jackson.version>2.13.2</jackson.version>
1415
</properties>
1516

1617
<dependencyManagement>
@@ -37,6 +38,26 @@
3738
<version>5.9.1</version>
3839
<scope>test</scope>
3940
</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>
4061
</dependencies>
4162

4263
<build>

0 commit comments

Comments
 (0)