File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
main/java/tools/jackson/datatype/guava/deser
test/java/tools/jackson/datatype/guava Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ permissions:
13
13
contents : read
14
14
15
15
env :
16
- GUAVA_DEFAULT : ' 33.3.1 -jre'
16
+ GUAVA_DEFAULT : ' 33.4.8 -jre'
17
17
GUAVA_MIN : ' 25.1-jre'
18
- GUAVA_MAX : ' 33.3.1 -jre'
18
+ GUAVA_MAX : ' 33.4.8 -jre'
19
19
jobs :
20
20
build :
21
21
runs-on : ' ubuntu-24.04'
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Following table shows the tested working ranges for recent module versions.
28
28
29
29
| Module version | Min Guava | Default Guava | Max Guava |
30
30
| -------------- | --------- | ------------- | --------- |
31
- | 3.0 | 25.1-jre | 33.3.1 -jre | 33.4.8-jre|
31
+ | 3.0 | 25.1-jre | 33.4.8 -jre | 33.4.8-jre|
32
32
| 2.20 | 22.0 | 25.1-jre | 33.4.8-jre|
33
33
| 2.19 | 20.0 | 25.1-jre | 33.1.0-jre|
34
34
| 2.18 | 20.0 | 25.1-jre | 33.1.0-jre|
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ Guava (http://code.google.com/p/guava-libraries/) types (currently mostly just c
27
27
28
28
<properties >
29
29
<!-- In Jackson 2.20 was guava 25.1-jre -->
30
- <version .guava>33.3.1 -jre</version .guava>
30
+ <version .guava>33.4.8 -jre</version .guava>
31
31
<!-- 10-Sep-2024, tatu: [datatypes-collections#160] OSGi version bit different: -->
32
- <version .guava.osgi-base>33.3.1 </version .guava.osgi-base>
32
+ <version .guava.osgi-base>33.4.8 </version .guava.osgi-base>
33
33
<version .guava.osgi>[${version.guava.osgi-base} ,99)</version .guava.osgi>
34
34
35
35
<!-- Generate PackageVersion.java into this directory. -->
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ public class InternetDomainNameDeserializer extends FromStringDeserializer<Inter
17
17
protected InternetDomainName _deserialize (String value , DeserializationContext ctxt )
18
18
throws JacksonException
19
19
{
20
+ System .err .println ("InternetDomainNameDeserializer._deserialize called with value: " + value );
20
21
return InternetDomainName .from (value );
21
22
}
22
23
}
Original file line number Diff line number Diff line change @@ -24,8 +24,7 @@ public void testInternetDomainNameSerialization() throws Exception
24
24
public void testInternetDomainNameDeserialization () throws Exception
25
25
{
26
26
final String INPUT = "google.com" ;
27
- // InternetDomainName name = MAPPER.readValue(quote(INPUT), InternetDomainName.class);
28
- InternetDomainName name = new ObjectMapper ().readValue (q (INPUT ), InternetDomainName .class );
27
+ InternetDomainName name = MAPPER .readValue (q (INPUT ), InternetDomainName .class );
29
28
assertNotNull (name );
30
29
assertEquals (INPUT , name .toString ());
31
30
}
You can’t perform that action at this time.
0 commit comments