diff --git a/readme.md b/readme.md
index 8260bcb2f..d4c1e0d05 100644
--- a/readme.md
+++ b/readme.md
@@ -1,6 +1,6 @@
# MapStruct - Java bean mappings, the easy way!
-[](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct%20AND%20v%3A1.*.Final)
+[](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct%20AND%20v%3A1.*.Final)
[](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct)
[](https://github.com/mapstruct/mapstruct/blob/master/LICENSE.txt)
@@ -64,13 +64,13 @@ For Maven-based projects, add the following to your POM file in order to use Map
```xml
...
- 1.2.0.Final
+ 1.3.0.Final
...
org.mapstruct
- mapstruct
+ mapstruct${org.mapstruct.version}
@@ -82,8 +82,8 @@ For Maven-based projects, add the following to your POM file in order to use Map
maven-compiler-plugin3.5.1
- 1.6
- 1.6
+ 1.8
+ 1.8org.mapstruct
@@ -115,10 +115,10 @@ apply plugin: 'net.ltgt.apt-eclipse'
dependencies {
...
- compile 'org.mapstruct:mapstruct:1.2.0.Final' // OR use this with Java 8 and beyond: org.mapstruct:mapstruct-jdk8:...
+ compile 'org.mapstruct:mapstruct:1.3.0.Final'
- annotationProcessor 'org.mapstruct:mapstruct-processor:1.2.0.Final'
- testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.2.0.Final' // if you are using mapstruct in test code
+ annotationProcessor 'org.mapstruct:mapstruct-processor:1.3.0.Final'
+ testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.3.0.Final' // if you are using mapstruct in test code
}
...
```