Skip to content

Commit

Permalink
Jackson212MissingConstructorTest should have worked in jackson 2.15
Browse files Browse the repository at this point in the history
  • Loading branch information
henrik242 committed Jan 17, 2023
1 parent a7bc2e3 commit 13d9fda
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-base</artifactId>
<version>2.14.1</version>
<version>2.15.0-SNAPSHOT</version>
</parent>
<groupId>com.fasterxml.jackson.test</groupId>
<artifactId>jackson-integration-tests</artifactId>
Expand All @@ -22,13 +22,13 @@
<javac.src.version>1.8</javac.src.version>
<javac.target.version>1.8</javac.target.version>
<scala.version>2.13</scala.version>
<scala.full.version>2.13.8</scala.full.version>
<scala.full.version>2.13.10</scala.full.version>
<kotlin.version>1.6.10</kotlin.version>

<!-- 13-Oct-2020, tatu: may need to occasionally work around missing Scala
module snapshot version
-->
<jackson.version.module.scala>2.14.0</jackson.version.module.scala>
<jackson.version.module.scala>2.15.0-SNAPSHOT</jackson.version.module.scala>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.failing
package com.fasterxml.jackson

import com.fasterxml.jackson.dataformat.xml.JacksonXmlModule
import com.fasterxml.jackson.dataformat.xml.XmlFactory
Expand All @@ -10,7 +10,8 @@ import javax.xml.stream.XMLInputFactory
class Jackson212MissingConstructorTest : BaseTest()
{
/**
* Succeeds in Jackson 2.11.x, but fails in Jackson 2.12.0
* Succeeds in Jackson 2.11.x, but fails in Jackson 2.12.0. Should have worked again in 2.15.0?
*
* See https://github.com/FasterXML/jackson-module-kotlin/issues/396
*/
fun testMissingConstructor()
Expand Down

0 comments on commit 13d9fda

Please sign in to comment.