aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTatu <tsaloranta@gmail.com>2013-08-16 11:49:20 -0700
committerTatu <tsaloranta@gmail.com>2013-08-16 11:49:20 -0700
commitb4006fcccf351bf40b52b645b7fbea5b8260da5f (patch)
tree4cbb79cf41eb632620338a2256c10814d2942fcd /README.md
parentbe9ae258d393b1bac753b23d0c66356b95c5d31f (diff)
downloadjackson-databind-b4006fcccf351bf40b52b645b7fbea5b8260da5f.tar.gz
...
Diffstat (limited to 'README.md')
-rw-r--r--README.md27
1 files changed, 14 insertions, 13 deletions
diff --git a/README.md b/README.md
index 9fc066905..188d5d855 100644
--- a/README.md
+++ b/README.md
@@ -3,22 +3,12 @@
This project contains the general-purpose data-binding functionality
and tree-model for [Jackson Data Processor](http://wiki.fasterxml.com/JacksonHome)
It builds on [core streaming parser/generator](https://github.com/FasterXML/jackson-core) package,
-and uses [Jackson Annotations](https://github.com/FasterXML//jackson-annotations) for configuration.
+and uses [Jackson Annotations](../../../jackson-annotations) for configuration.
-While the original use case for Jackson was JSON data-binding,
-it can now be used for other data formats as well, as long as
-parser and generator implementations exist.
-Naming of classes uses word 'JSON' in many places even though there is no
-actual hard dependency to JSON format.
+While the original use case for Jackson was JSON data-binding, it can now be used for other data formats as well, as long as parser and generator implementations exist.
+Naming of classes uses word 'JSON' in many places even though there is no actual hard dependency to JSON format.
[![Build Status](https://fasterxml.ci.cloudbees.com/job/jackson-databind-master/badge/icon)](https://fasterxml.ci.cloudbees.com/job/jackson-databind-master/)
-### Differences from Jackson 1.x
-
-Project contains versions 2.0 and above: source code for earlier (1.x) versions is available from [Codehaus](http://jackson.codehaus.org) SVN repository
-Main differences compared to 1.0 "mapper" jar are:
-
-* Maven build instead of Ant
-* Java package is now `com.fasterxml.jackson.databind` (instead of `org.codehaus.jackson.map`)
-----
@@ -64,6 +54,7 @@ Databind jar is also a functional OSGi bundle, with proper import/export declara
# Use It!
+More comprehensive documentation can be found from XXX
While wiki contains more documentation, here are brief introductionary tutorials, in recommended order of reading.
## 1 minute tutorial: POJOs to JSON and back
@@ -371,6 +362,16 @@ This means that anything that has to rely on additional APIs or libraries needs
-----
+# Differences from Jackson 1.x
+
+Project contains versions 2.0 and above: source code for earlier (1.x) versions is available from [Codehaus](http://jackson.codehaus.org) SVN repository
+Main differences compared to 1.0 "mapper" jar are:
+
+* Maven build instead of Ant
+* Java package is now `com.fasterxml.jackson.databind` (instead of `org.codehaus.jackson.map`)
+
+-----
+
# Further reading
* [Documentation](https://github.com/FasterXML/jackson-databind/wiki/Documentation)