Skip to content

Commit

Permalink
Prepare for 2.17.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 10, 2024
1 parent 0d7fa44 commit 87c3b22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
<parent>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-base</artifactId>
<version>2.17.0-SNAPSHOT</version>
<version>2.17.0-rc1-SNAPSHOT</version>
</parent>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.17.0-SNAPSHOT</version>
<version>2.17.0-rc1-SNAPSHOT</version>
<name>Jackson-dataformat-XML</name>
<packaging>jar</packaging>
<description>Data format extension for Jackson to offer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector;

import com.fasterxml.jackson.dataformat.xml.XmlTestBase;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;

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

// annotation should NOT be needed with 2.6 any more (except for single-arg case)
//@com.fasterxml.jackson.annotation.JsonCreator
public XY(int x, int y) {
public XY(int x,
@JacksonXmlProperty(isAttribute=true)
int y) {
this.x = x;
this.y = y;
}
Expand Down

0 comments on commit 87c3b22

Please sign in to comment.