aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTatu Saloranta <tsaloranta@gmail.com>2013-04-22 20:08:44 -0700
committerTatu Saloranta <tsaloranta@gmail.com>2013-04-22 20:08:44 -0700
commit3ee4fe0fc1b0bb3c3d2f39567f3f1ae86c3fa53b (patch)
treed97ad4386b9c20832d94433a0996ce6aa2b04aa2 /README.md
parent2b1f952854943f24cb3d694b279730b7ec49be2c (diff)
downloadjackson-databind-3ee4fe0fc1b0bb3c3d2f39567f3f1ae86c3fa53b.tar.gz
...
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 3 insertions, 7 deletions
diff --git a/README.md b/README.md
index 3b2081139..4bc054862 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,6 @@ 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.
-More low-level details can be found from [Javadocs](http://fasterxml.github.com/jackson-databind/javadoc/2.1.1/).
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
@@ -33,7 +32,7 @@ Functionality of this package is contained in Java package `com.fasterxml.jackso
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
- <version>2.1.3</version>
+ <version>2.2.0</version>
</dependency>
```
@@ -44,12 +43,12 @@ If so, also add:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
- <version>2.1.2</version>
+ <version>2.2.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
- <version>2.1.3</version>
+ <version>2.2.0</version>
</dependency>
```
@@ -365,9 +364,6 @@ This means that anything that has to rely on additional APIs or libraries needs
# Further reading
-Project-specific documentation:
-
-* [Javadocs](http://fasterxml.github.com/jackson-databind/javadoc/2.1.1/)
* [Documentation](https://github.com/FasterXML/jackson-databind/wiki/Documentation)
Related: