From 946b8c86315049c22b6beea472a8c7aeb5b62544 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Gr=C3=BCneberg?= Date: Fri, 20 Oct 2017 23:28:41 +0200 Subject: [PATCH] #1312 Change MapStruct Version in README to latest 1.2.0.Final --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 393c9b262..52904f755 100644 --- a/readme.md +++ b/readme.md @@ -66,7 +66,7 @@ For Maven-based projects add the following to your POM file in order to use MapS ```xml ... - 1.1.0.Final + 1.2.0.Final ... @@ -111,9 +111,9 @@ plugins { } dependencies { ... - compile 'org.mapstruct:mapstruct:1.1.0.Final' // OR use this with Java 8 and beyond: org.mapstruct:mapstruct-jdk8:... + compile 'org.mapstruct:mapstruct:1.2.0.Final' // OR use this with Java 8 and beyond: org.mapstruct:mapstruct-jdk8:... - apt 'org.mapstruct:mapstruct-processor:1.1.0.Final' + apt 'org.mapstruct:mapstruct-processor:1.2.0.Final' } ... ```