This is an automated email from the git hooks/post-receive script. tjaalton pushed a commit to branch master in repository jackson-jaxrs-providers.
commit 91fb6cb42aa1d8a38e636b8312d6e2a9a96a8c92 Author: Tatu Saloranta <[email protected]> Date: Mon Feb 4 15:23:06 2013 -0800 ... --- json/pom.xml | 6 ++++++ pom.xml | 1 + smile/pom.xml | 6 ++++++ xml/pom.xml | 6 ++++++ 4 files changed, 19 insertions(+) diff --git a/json/pom.xml b/json/pom.xml index bcf617e..48ef2de 100644 --- a/json/pom.xml +++ b/json/pom.xml @@ -52,6 +52,12 @@ </properties> <dependencies> + <!-- builds on shared base JAX-RS handling code... --> + <dependency> + <artifactId>jackson-jaxrs-base</artifactId> + <groupId>${project.groupId}</groupId> + <version>${project.version}</version> + </dependency> <!-- Extends Jackson core, mapper, and also (sort of optionally) on JAXB annotation handler --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> diff --git a/pom.xml b/pom.xml index 75c4845..b267bb9 100644 --- a/pom.xml +++ b/pom.xml @@ -30,6 +30,7 @@ </description> <modules> + <module>base</module> <module>json</module> <module>smile</module> <module>xml</module> diff --git a/smile/pom.xml b/smile/pom.xml index 2595611..350dfe7 100644 --- a/smile/pom.xml +++ b/smile/pom.xml @@ -52,6 +52,12 @@ </properties> <dependencies> + <!-- builds on shared base JAX-RS handling code... --> + <dependency> + <artifactId>jackson-jaxrs-base</artifactId> + <groupId>${project.groupId}</groupId> + <version>${project.version}</version> + </dependency> <!-- Extends Jackson core, mapper, and also (sort of optionally) on JAXB annotation handler --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> diff --git a/xml/pom.xml b/xml/pom.xml index d015da3..e5579ce 100644 --- a/xml/pom.xml +++ b/xml/pom.xml @@ -52,6 +52,12 @@ </properties> <dependencies> + <!-- builds on shared base JAX-RS handling code... --> + <dependency> + <artifactId>jackson-jaxrs-base</artifactId> + <groupId>${project.groupId}</groupId> + <version>${project.version}</version> + </dependency> <!-- Extends Jackson core, mapper, and also (sort of optionally) on JAXB annotation handler --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jackson-jaxrs-providers.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

