diff --git a/readme.md b/readme.md
index 21d820dc5..6e5debbb7 100644
--- a/readme.md
+++ b/readme.md
@@ -1,14 +1,11 @@
# MapStruct - Java bean mappings, the easy way!
-[](https://search.maven.org/search?q=g:org.mapstruct%20AND%20v:1.*.Final)
-[](https://search.maven.org/search?q=g:org.mapstruct)
+[](https://central.sonatype.com/search?q=g:org.mapstruct%20v:1.6.0)
+[](https://central.sonatype.com/search?q=g:org.mapstruct)
[](https://github.com/mapstruct/mapstruct/blob/main/LICENSE.txt)
[](https://github.com/mapstruct/mapstruct/actions?query=branch%3Amain+workflow%3ACI)
[](https://codecov.io/gh/mapstruct/mapstruct/tree/main)
-[](https://gitter.im/mapstruct/mapstruct-users)
-[](https://lgtm.com/projects/g/mapstruct/mapstruct/context:java)
-[](https://lgtm.com/projects/g/mapstruct/mapstruct/alerts)
* [What is MapStruct?](#what-is-mapstruct)
* [Requirements](#requirements)
@@ -68,7 +65,7 @@ For Maven-based projects, add the following to your POM file in order to use Map
```xml
...
- 1.5.5.Final
+ 1.6.0
...
@@ -84,10 +81,10 @@ For Maven-based projects, add the following to your POM file in order to use Map
org.apache.maven.pluginsmaven-compiler-plugin
- 3.8.1
+ 3.13.0
- 1.8
- 1.8
+ 17
+ 1<7/target>
org.mapstruct
@@ -114,10 +111,10 @@ plugins {
dependencies {
...
- implementation 'org.mapstruct:mapstruct:1.5.5.Final'
+ implementation 'org.mapstruct:mapstruct:1.6.0'
- annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
- testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final' // if you are using mapstruct in test code
+ annotationProcessor 'org.mapstruct:mapstruct-processor:1.6.0'
+ testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.6.0' // if you are using mapstruct in test code
}
...
```