7 Commits

3 changed files with 26 additions and 4 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

@ -54,7 +54,7 @@ public class Person {
} }
/* fluent setter - these are detected as extra setters and would /* fluent setter - these are detected as extra setters and would
cause an mapping exception, if the mapper is annotated with cause a mapping exception, if the mapper is annotated with
unmappedTargetPolicy = ReportingPolicy.ERROR. unmappedTargetPolicy = ReportingPolicy.ERROR.
*/ */

20
pom.xml
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.4.2</version> <version>1.5.5</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>
@ -21,10 +24,21 @@
<url>https://jomu.timelord.de/git/jomu/mapstruct-support/issues</url> <url>https://jomu.timelord.de/git/jomu/mapstruct-support/issues</url>
</issueManagement> </issueManagement>
<distributionManagement>
<repository>
<id>jomu-gitea</id>
<url>https://jomu.timelord.de/git/api/packages/jomu/maven</url>
</repository>
<snapshotRepository>
<id>jomu-gitea</id>
<url>https://jomu.timelord.de/git/api/packages/jomu/maven</url>
</snapshotRepository>
</distributionManagement>
<scm> <scm>
<connection>scm:git:https://jomu.timelord.de/git/jomu/mapstruct-support</connection> <connection>scm:git:https://jomu.timelord.de/git/jomu/mapstruct-support</connection>
<developerConnection>scm:git:git@jomu.timelord.de:jomu/mapstruct-support.git</developerConnection> <developerConnection>scm:git:git@jomu.timelord.de:jomu/mapstruct-support.git</developerConnection>
<tag>mapstruct-support-1.4.2</tag> <tag>mapstruct-support-1.5.5</tag>
</scm> </scm>
<developers> <developers>
@ -46,7 +60,7 @@
<dependency> <dependency>
<groupId>org.mapstruct</groupId> <groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId> <artifactId>mapstruct-processor</artifactId>
<version>1.4.2.Final</version> <version>${mapstruct.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>