Skip to content
GitLab
Explore
Sign in
Register
Commits on Source
4
New upstream version 2.9.5
· b08d8e32
Emmanuel Bourg
authored
Dec 30, 2018
b08d8e32
New upstream version 2.9.6
· 63d2b1f4
Emmanuel Bourg
authored
Dec 30, 2018
63d2b1f4
New upstream version 2.9.7
· 472f2387
Emmanuel Bourg
authored
Dec 30, 2018
472f2387
New upstream version 2.9.8
· eef14700
Emmanuel Bourg
authored
Dec 30, 2018
eef14700
Show whitespace changes
Inline
Side-by-side
pom.xml
View file @
eef14700
...
...
@@ -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" -->
...
...
src/main/java/com/fasterxml/jackson/annotation/JsonCreator.java
View file @
eef14700
...
...
@@ -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 Json
Creator
* @see Json
Property
*/
@Target
({
ElementType
.
ANNOTATION_TYPE
,
ElementType
.
METHOD
,
ElementType
.
CONSTRUCTOR
})
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...