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 8dedad8f9917a8f6532e7e8a38b63002eb08e6f2 Author: Tatu Saloranta <[email protected]> Date: Mon Feb 4 13:39:50 2013 -0800 start implementing --- .gitignore | 23 ++++++++++++++++---- pom.xml | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++ release-notes/VERSION | 57 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 136 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 0f182a0..84914ec 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,21 @@ +# use glob syntax. +syntax: glob *.class +*~ +*.bak +*.off +*.old +.DS_Store -# Package Files # -*.jar -*.war -*.ear +# building +target + +# Eclipse +.classpath +.project +.settings + +# IDEA +*.iml +*.ipr +*.iws diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..255d5e1 --- /dev/null +++ b/pom.xml @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + | Copyright 2012 FasterXML.com + | + | Licensed under the Apache License, Version 2.0 (the "License"); + | you may not use this file except in compliance with the License. + | You may obtain a copy of the License at + | + | http://www.apache.org/licenses/LICENSE-2.0 + | + | Unless required by applicable law or agreed to in writing, software + | distributed under the License is distributed on an "AS IS" BASIS, + | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + | See the License for the specific language governing permissions and + | limitations under the License. +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>com.fasterxml</groupId> + <artifactId>oss-parent</artifactId> + <version>4</version> + </parent> + <groupId>com.fasterxml.jackson.jaxrs</groupId> + <artifactId>jackson-jaxrs-providers</artifactId> + <name>Jackson JAX-RS</name> + <version>2.2.0-SNAPSHOT</version> + <packaging>pom</packaging> + <description>Parent for Jackson JAX-RS providers + </description> + + <modules> + <module>json</module> +<!-- + <module>smile</module> + <module>xml</module> +--> + </modules> + <url>http://wiki.fasterxml.com/JacksonHome</url> + <scm> + <connection>scm:git:[email protected]:FasterXML/jackson-jaxrs-json-providers.git</connection> + <developerConnection>scm:git:[email protected]:FasterXML/jackson-jaxrs-json-providers.git</developerConnection> + <url>http://github.com/FasterXML/jackson-jaxrs-json-providers</url> + </scm> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <version.jackson>2.2.0-SNAPSHOT</version.jackson> + </properties> + + <dependencies> + <!-- for testing, JUnit is needed --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.8.2</version> + <scope>test</scope> + </dependency> + </dependencies> + +</project> diff --git a/release-notes/VERSION b/release-notes/VERSION new file mode 100644 index 0000000..31cd42c --- /dev/null +++ b/release-notes/VERSION @@ -0,0 +1,57 @@ +Project: jackson-jaxrs-providers +Sub-modules: + jackson-jaxrs-json-provider + jackson-jaxrs-smile-provider + jackson-jaxrs-xml-provider +Version: 2.2.0 (...) + +First multi-module release! + +------------------------------------------------------------------------ +=== History: === +------------------------------------------------------------------------ + +2.1.2 (05-Dec-2012) + +No changes. + +2.1.1 (11-Nov-2012) + +JSON + + * [Issue#17]: Accept empty content as 'null', instead of throwing an + EOFException + (requested by Matt B, cjellick@github) + +2.1.0 (08-Oct-2012) + +No fixes, updated dependencies. + +2.0.2 (14-May-2012) + +JSON: + + * [Issue-11] Change JAXB annotation module dependency to optional for OSGi + * [Issue-12] Revert untouchable change to 1.x compatible; so that + 'String' and 'byte[]' are again "untouchable" (JSON provider will NOT + try to convert them) + +2.0.1 (23-Apr-2012) + +JSON: + + * Changed 'jaxrs-311' dependency from 'compile' to 'provided' + * SPI (META-INF/services/) fixed so auto-registration should now work + (contributed by Simone T) + * Issue-10: NPE in EndpointConfig, if JAX-RS container passes null + set of Annotations to writeTo() + +2.0.0 (25-Mar-2012) + +JSON: + + * [Issue-1] Add @JSONP annotation for declarative JSONP support + * [Issue-2] Add @JacksonFeatures annotation for reconfiguring serialization, + deserialization features on per-endpoint basis + +[entries for versions 1.x and earlier not retained; refer to earlier releases) -- 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

