Skip to content
Commits on Source (9)
jackson-annotations (2.9.8-1) unstable; urgency=medium
* Team upload.
* New upstream release
- Refreshed the patch
* Standards-Version updated to 4.3.0
* Use salsa.debian.org Vcs-* URLs
-- Emmanuel Bourg <ebourg@apache.org> Sun, 30 Dec 2018 00:35:47 +0100
jackson-annotations (2.9.4-1) unstable; urgency=medium
* Team upload.
......
......@@ -13,9 +13,9 @@ Build-Depends-Indep:
junit4,
libmaven-bundle-plugin-java,
libmaven-javadoc-plugin-java
Standards-Version: 4.1.3
Vcs-Git: https://anonscm.debian.org/git/pkg-java/jackson-annotations.git
Vcs-Browser: https://anonscm.debian.org/git/pkg-java/jackson-annotations.git
Standards-Version: 4.3.0
Vcs-Git: https://salsa.debian.org/java-team/jackson-annotations.git
Vcs-Browser: https://salsa.debian.org/java-team/jackson-annotations
Homepage: http://wiki.fasterxml.com/JacksonHome
Package: libjackson2-annotations-java
......
......@@ -6,11 +6,9 @@ Subject: fix using bundle
pom.xml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/pom.xml b/pom.xml
index 879c302..a8362c7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -52,6 +52,8 @@
@@ -51,6 +51,8 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
......
......@@ -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)
......