Skip to content

Commit

Permalink
Update readme with 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
filiphr authored Sep 27, 2024
1 parent 4e0d73d commit 26c5bcd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MapStruct - Java bean mappings, the easy way!

[![Latest Stable Version](https://img.shields.io/badge/Latest%20Stable%20Version-1.6.0-blue.svg)](https://central.sonatype.com/search?q=g:org.mapstruct%20v:1.6.0)
[![Latest Stable Version](https://img.shields.io/badge/Latest%20Stable%20Version-1.6.2-blue.svg)](https://central.sonatype.com/search?q=g:org.mapstruct%20v:1.6.2)
[![Latest Version](https://img.shields.io/maven-central/v/org.mapstruct/mapstruct-processor.svg?maxAge=3600&label=Latest%20Release)](https://central.sonatype.com/search?q=g:org.mapstruct)
[![License](https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg)](https://github.com/mapstruct/mapstruct/blob/main/LICENSE.txt)

Expand Down Expand Up @@ -65,7 +65,7 @@ For Maven-based projects, add the following to your POM file in order to use Map
```xml
...
<properties>
<org.mapstruct.version>1.6.0</org.mapstruct.version>
<org.mapstruct.version>1.6.2</org.mapstruct.version>
</properties>
...
<dependencies>
Expand Down Expand Up @@ -111,10 +111,10 @@ plugins {
dependencies {
...
implementation 'org.mapstruct:mapstruct:1.6.0'
implementation 'org.mapstruct:mapstruct:1.6.2'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.6.0'
testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.6.0' // if you are using mapstruct in test code
annotationProcessor 'org.mapstruct:mapstruct-processor:1.6.2'
testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.6.2' // if you are using mapstruct in test code
}
...
```
Expand Down

0 comments on commit 26c5bcd

Please sign in to comment.