File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
main/java/com/github/dockerjava/api/model
test/java/com/github/dockerjava/api/model Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 58
58
<jdk .target>1.7</jdk .target>
59
59
60
60
<jersey .version>2.27</jersey .version>
61
- <jackson-jaxrs .version>2.6 .7</jackson-jaxrs .version>
61
+ <jackson-jaxrs .version>2.9 .7</jackson-jaxrs .version>
62
62
<httpclient .version>4.5.6</httpclient .version><!-- 4.5.1-4.5.2 broken -->
63
- <commons-compress .version>1.17 </commons-compress .version>
63
+ <commons-compress .version>1.18 </commons-compress .version>
64
64
<commons-codec .version>1.11</commons-codec .version>
65
65
<commons-io .version>2.6</commons-io .version>
66
66
<commons-lang .version>2.6</commons-lang .version>
72
72
73
73
<!-- test dependencies -->
74
74
<logback .version>1.2.3</logback .version>
75
- <netty .version>4.1.27 .Final</netty .version>
75
+ <netty .version>4.1.31 .Final</netty .version>
76
76
<hamcrest .library.version>1.3</hamcrest .library.version>
77
77
<hamcrest .jpa-matchers>1.8</hamcrest .jpa-matchers>
78
78
<lambdaj .version>2.3.3</lambdaj .version>
164
164
<dependency >
165
165
<groupId >org.slf4j</groupId >
166
166
<artifactId >jcl-over-slf4j</artifactId >
167
- <version >1.7.21 </version >
167
+ <version >${slf4j-api.version} </version >
168
168
</dependency >
169
169
170
170
<dependency >
Original file line number Diff line number Diff line change 14
14
* @since {@link RemoteApiVersion#VERSION_1_24}
15
15
*/
16
16
public class ServiceModeConfig implements Serializable {
17
- public static final Long serialVersionUID = 1L ;
17
+ public static final long serialVersionUID = 1L ;
18
18
19
19
/**
20
20
* @since 1.24
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public class VersionTest {
24
24
@ Test
25
25
public void testSerDer1 () throws Exception {
26
26
final ObjectMapper mapper = new ObjectMapper ();
27
- final JavaType type = mapper .getTypeFactory ().uncheckedSimpleType (Version .class );
27
+ final JavaType type = mapper .getTypeFactory ().constructType (Version .class );
28
28
29
29
final Version version = testRoundTrip (RemoteApiVersion .VERSION_1_22 ,
30
30
"/version/1.json" ,
@@ -46,7 +46,7 @@ public void testSerDer1() throws Exception {
46
46
@ Test
47
47
public void version_1_38 () throws Exception {
48
48
final ObjectMapper mapper = new ObjectMapper ();
49
- final JavaType type = mapper .getTypeFactory ().uncheckedSimpleType (Version .class );
49
+ final JavaType type = mapper .getTypeFactory ().constructType (Version .class );
50
50
51
51
final Version version = testRoundTrip (RemoteApiVersion .VERSION_1_38 ,
52
52
"/version/lcow.json" ,
You can’t perform that action at this time.
0 commit comments