Skip to content

Commit 87c3b22

Browse files
committed
Prepare for 2.17.0-rc1
1 parent 0d7fa44 commit 87c3b22

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson</groupId>
1111
<artifactId>jackson-base</artifactId>
12-
<version>2.17.0-SNAPSHOT</version>
12+
<version>2.17.0-rc1-SNAPSHOT</version>
1313
</parent>
1414
<groupId>com.fasterxml.jackson.dataformat</groupId>
1515
<artifactId>jackson-dataformat-xml</artifactId>
16-
<version>2.17.0-SNAPSHOT</version>
16+
<version>2.17.0-rc1-SNAPSHOT</version>
1717
<name>Jackson-dataformat-XML</name>
1818
<packaging>jar</packaging>
1919
<description>Data format extension for Jackson to offer

src/test/java/com/fasterxml/jackson/dataformat/xml/deser/creator/ImplicitParamsForCreatorTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector;
1111

1212
import com.fasterxml.jackson.dataformat.xml.XmlTestBase;
13+
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
1314

1415
// copied form [jackson-databind]
1516
public class ImplicitParamsForCreatorTest
@@ -33,7 +34,9 @@ static class XY {
3334

3435
// annotation should NOT be needed with 2.6 any more (except for single-arg case)
3536
//@com.fasterxml.jackson.annotation.JsonCreator
36-
public XY(int x, int y) {
37+
public XY(int x,
38+
@JacksonXmlProperty(isAttribute=true)
39+
int y) {
3740
this.x = x;
3841
this.y = y;
3942
}

0 commit comments

Comments
 (0)