prepare release 1.5.5

This commit is contained in:
Joern Muehlencord
2023-07-28 00:10:07 +02:00
parent 29f561d7c8
commit ef70e1b595
2 changed files with 13 additions and 2 deletions

8
.gitignore vendored
View File

@ -132,3 +132,11 @@ gradle-app.setting
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties # gradle/wrapper/gradle-wrapper.properties
## maven release plugin
*.releaseBackup
release.properties
## maven versions plugin
*.versionsBackup

View File

@ -4,11 +4,14 @@
<groupId>de.muehlencord.mapstruct</groupId> <groupId>de.muehlencord.mapstruct</groupId>
<artifactId>mapstruct-support</artifactId> <artifactId>mapstruct-support</artifactId>
<version>1.5.4-SNAPSHOT</version> <version>1.5.5-SNAPSHOT</version>
<properties> <properties>
<maven.compiler.source>11</maven.compiler.source> <maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target> <maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
<mapstruct.version>1.5.5.Final</mapstruct.version>
</properties> </properties>
<inceptionYear>2021</inceptionYear> <inceptionYear>2021</inceptionYear>
@ -57,7 +60,7 @@
<dependency> <dependency>
<groupId>org.mapstruct</groupId> <groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId> <artifactId>mapstruct-processor</artifactId>
<version>1.5.3.Final</version> <version>${mapstruct.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>