Creators should work with static method creator(com.fasterxml.jackson.module.scala.deser.CreatorTest) Time elapsed: 0-.045 sec <<< ERROR!com.faster.jackson.databind.JsonMapingException: Could not find creator property with name 'value' (in class com.fasterxml.jackson.module.scala.deser.ValueHolder)at [Source: "2"; line: 1, column: 1]...
--
You received this message because you are subscribed to the Google Groups "jackson-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jackson-dev...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Not without seeing more of the POM. As an aside, what is the motivation for this work?
...
<build>
<resources>
<!-- create target/classes/com/fasterxml/jackson/module/scala/build.properties ->
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resources>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.2.2</version>
<executions>
<execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>scala-test-compile</id>
<phase>process-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<arg>-deprecation</arg>
<arg>-unchecked</arg>
<arg>-feature</arg>
</args>
<jvmArgs>
<jvmArg>-Xms256m</jvmArg>
<jvmArg>-Xmx1024m</jvmArg>
<jvmArg>-XX:+UseCodeCacheFlushing</jvmArg>
</jvmArgs>
<javacArgs>
<javacArg>-source</javacArg><javacArg>1.7</javacArg>
<javacArg>-target</javacArg><javacArg>1.7</javacArg>
</javacArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<argLine>-XX:-UseSplitVerifier</argLine>
<source>1.7</source>
<target>1.7</target>
</configuration>
<executions>
<execution>
<phase>compile</compile>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
...