Compare commits
7 Commits
mapstruct-
...
mapstruct-
| Author | SHA1 | Date | |
|---|---|---|---|
| c1d4069a23 | |||
| ef70e1b595 | |||
| 29f561d7c8 | |||
| 67f3bfbae5 | |||
| b1122ecd27 | |||
| 4f443e5eeb | |||
| 660be27f1a |
8
.gitignore
vendored
8
.gitignore
vendored
@ -132,3 +132,11 @@ gradle-app.setting
|
||||
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
|
||||
# gradle/wrapper/gradle-wrapper.properties
|
||||
|
||||
|
||||
## maven release plugin
|
||||
*.releaseBackup
|
||||
release.properties
|
||||
|
||||
|
||||
## maven versions plugin
|
||||
*.versionsBackup
|
||||
|
||||
@ -54,7 +54,7 @@ public class Person {
|
||||
}
|
||||
|
||||
/* 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.
|
||||
*/
|
||||
|
||||
|
||||
20
pom.xml
20
pom.xml
@ -4,11 +4,14 @@
|
||||
|
||||
<groupId>de.muehlencord.mapstruct</groupId>
|
||||
<artifactId>mapstruct-support</artifactId>
|
||||
<version>1.4.2</version>
|
||||
<version>1.5.5</version>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>11</maven.compiler.source>
|
||||
<maven.compiler.target>11</maven.compiler.target>
|
||||
<maven.compiler.release>11</maven.compiler.release>
|
||||
|
||||
<mapstruct.version>1.5.5.Final</mapstruct.version>
|
||||
</properties>
|
||||
|
||||
<inceptionYear>2021</inceptionYear>
|
||||
@ -21,10 +24,21 @@
|
||||
<url>https://jomu.timelord.de/git/jomu/mapstruct-support/issues</url>
|
||||
</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>
|
||||
<connection>scm:git:https://jomu.timelord.de/git/jomu/mapstruct-support</connection>
|
||||
<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>
|
||||
|
||||
<developers>
|
||||
@ -46,7 +60,7 @@
|
||||
<dependency>
|
||||
<groupId>org.mapstruct</groupId>
|
||||
<artifactId>mapstruct-processor</artifactId>
|
||||
<version>1.4.2.Final</version>
|
||||
<version>${mapstruct.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user