Use Maven Central badge to show latest release version.
diff --git a/README.md b/README.md
index 35e439f..f1a58f8 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@
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.
-[](https://travis-ci.org/FasterXML/jackson-databind)
+[](https://travis-ci.org/FasterXML/jackson-databind) [](https://maven-badges.herokuapp.com/maven-central/com.fasterxml.jackson.core/jackson-databind)
-----
@@ -23,7 +23,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
- <version>2.3.3</version>
+ <version>${jackson-databind-version}</version>
</dependency>
```
@@ -35,12 +35,12 @@
<!-- note: typically only ".0" patch version exists for core annotations -->
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
- <version>2.3.0</version>
+ <version>${jackson-annotations-version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
- <version>2.3.1</version>
+ <version>${jackson-core-version}</version>
</dependency>
```