Skip to content

Commits on Source 4

......@@ -5,13 +5,13 @@
<groupId>com.fasterxml.jackson</groupId>
<!-- this is one of few Jackson modules that depends on parent and NOT jackson-bom -->
<artifactId>jackson-parent</artifactId>
<version>2.9.1</version>
<version>2.9.1.2</version>
</parent>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<name>Jackson-annotations</name>
<version>2.9.4</version>
<version>2.9.8</version>
<packaging>bundle</packaging>
<description>Core annotations used for value types, used by Jackson data binding package.
</description>
......@@ -22,7 +22,7 @@
<connection>scm:git:git@github.com:FasterXML/jackson-annotations.git</connection>
<developerConnection>scm:git:git@github.com:FasterXML/jackson-annotations.git</developerConnection>
<url>http://github.com/FasterXML/jackson-annotations</url>
<tag>jackson-annotations-2.9.4</tag>
<tag>jackson-annotations-2.9.8</tag>
</scm>
<properties>
......@@ -45,7 +45,6 @@
</dependency>
</dependencies>
<build>
<plugins>
<!-- 06-Sep-2017, tatu: Try to generate "automatic module name" -->
......
......@@ -38,7 +38,7 @@ import java.lang.annotation.Target;
* NOTE: As of Jackson 2.6, use of {@link JsonProperty#required()} is supported
* for Creator methods (but not necessarily for regular setters or fields!).
*
* @see JsonCreator
* @see JsonProperty
*/
@Target({ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR})
@Retention(RetentionPolicy.RUNTIME)
......