Skip to content

Commit 3d19f44

Browse files
committed
updated jackson version
1 parent d7e8092 commit 3d19f44

File tree

1 file changed

+20
-13
lines changed

1 file changed

+20
-13
lines changed

samples/java-dropwizard/pom.xml

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -89,33 +89,40 @@
8989
<exclusions>
9090
<exclusion>
9191
<groupId>com.sun.jersey</groupId>
92-
<artifactId>jersey-servlet</artifactId>
92+
<artifactId>*</artifactId>
9393
</exclusion>
94+
</exclusions>
95+
</dependency>
96+
<dependency>
97+
<groupId>io.dropwizard</groupId>
98+
<artifactId>dropwizard-core</artifactId>
99+
<version>0.7.1</version>
100+
<scope>compile</scope>
101+
<exclusions>
94102
<exclusion>
95-
<groupId>com.sun.jersey</groupId>
96-
<artifactId>jersey-core</artifactId>
103+
<groupId>com.fasterxml.jackson.core</groupId>
104+
<artifactId>*</artifactId>
97105
</exclusion>
98106
<exclusion>
99-
<groupId>com.sun.jersey</groupId>
100-
<artifactId>jersey-server</artifactId>
107+
<groupId>com.fasterxml.jackson.datatype</groupId>
108+
<artifactId>*</artifactId>
101109
</exclusion>
102110
<exclusion>
103-
<groupId>com.sun.jersey</groupId>
104-
<artifactId>jersey-multipart</artifactId>
111+
<groupId>com.fasterxml.jackson.dataformat</groupId>
112+
<artifactId>*</artifactId>
105113
</exclusion>
106114
</exclusions>
107115
</dependency>
108-
<dependency>
109-
<groupId>io.dropwizard</groupId>
110-
<artifactId>dropwizard-core</artifactId>
111-
<version>0.7.0</version>
112-
<scope>compile</scope>
113-
</dependency>
114116
<dependency>
115117
<groupId>org.scalatest</groupId>
116118
<artifactId>scalatest_2.10</artifactId>
117119
<scope>test</scope>
118120
</dependency>
121+
<dependency>
122+
<groupId>com.fasterxml.jackson.datatype</groupId>
123+
<artifactId>jackson-datatype-guava</artifactId>
124+
<version>2.4.2</version>
125+
</dependency>
119126
<dependency>
120127
<groupId>junit</groupId>
121128
<artifactId>junit</artifactId>

0 commit comments

Comments
 (0)