mirror of
https://github.com/mapstruct/mapstruct.git
synced 2025-07-12 00:00:08 +08:00
Update latest version and remove some obsolete badges
This commit is contained in:
parent
c89b616f8c
commit
58dcb9d813
21
readme.md
21
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
|
||||
...
|
||||
<properties>
|
||||
<org.mapstruct.version>1.5.5.Final</org.mapstruct.version>
|
||||
<org.mapstruct.version>1.6.0</org.mapstruct.version>
|
||||
</properties>
|
||||
...
|
||||
<dependencies>
|
||||
@ -84,10 +81,10 @@ For Maven-based projects, add the following to your POM file in order to use Map
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<version>3.13.0</version>
|
||||
<configuration>
|
||||
<source>1.8</source>
|
||||
<target>1.8</target>
|
||||
<source>17</source>
|
||||
<target>1<7/target>
|
||||
<annotationProcessorPaths>
|
||||
<path>
|
||||
<groupId>org.mapstruct</groupId>
|
||||
@ -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
|
||||
}
|
||||
...
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user