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 e56f7b2f35fa15422d2b0fe65ea8a414276f9c31 Author: Tatu Saloranta <[email protected]> Date: Tue Apr 23 10:21:12 2013 -0700 Fixed #9, accidental compile-time dep to Jetty --- pom.xml | 2 ++ release-notes/VERSION | 16 +++++++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 70c4fd7..3173a7b 100644 --- a/pom.xml +++ b/pom.xml @@ -86,11 +86,13 @@ <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>${version.jetty}</version> + <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>${version.jetty}</version> + <scope>test</scope> </dependency> <dependency> diff --git a/release-notes/VERSION b/release-notes/VERSION index a4f635a..80bc1b6 100644 --- a/release-notes/VERSION +++ b/release-notes/VERSION @@ -5,7 +5,17 @@ Sub-modules: jackson-jaxrs-xml-provider Version: 2.2.0 (22-Apr-2013) -First multi-module release, to make release easier, share some boilerplate code. +Changes: + +#9: Dependency to Jetty was accidentally left as compile-time; should be + 'test' + (reported by KlausBrunner@github) + +------------------------------------------------------------------------ +=== History: === +------------------------------------------------------------------------ + +2.2.0 (22-Apr-2013) Changes: @@ -17,10 +27,6 @@ Changes: otherwise can hide problems (due to missing flush of content) (contributed by Steven S) ------------------------------------------------------------------------- -=== History: === ------------------------------------------------------------------------- - 2.1.2 (05-Dec-2012) No changes. -- 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

