This is an automated email from the git hooks/post-receive script. tjaalton pushed a commit to branch master in repository jackson-annotations.
commit 411353d7155196939762a1a716f499461f6d3299 Author: Tatu Saloranta <[email protected]> Date: Thu Apr 26 08:39:33 2012 -0700 Quick fix for 2.0.2, to use bundle name that 2.0.0 used (and other components that don't use oss-parent) --- pom.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pom.xml b/pom.xml index 3563159..52b9b08 100644 --- a/pom.xml +++ b/pom.xml @@ -45,4 +45,21 @@ <osgi.export>com.fasterxml.jackson.annotation.*;version=${project.version}</osgi.export> </properties> + <!-- need to override bundle name, for 2.0.x compatibility --> + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <version>2.3.7</version> + <extensions>true</extensions> + <configuration> + <instructions> + <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + </project> -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jackson-annotations.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

