Compare commits
4 Commits
mapstruct-
...
mapstruct-
| Author | SHA1 | Date | |
|---|---|---|---|
| c1d4069a23 | |||
| ef70e1b595 | |||
| 29f561d7c8 | |||
| 67f3bfbae5 |
8
.gitignore
vendored
8
.gitignore
vendored
@ -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
|
||||||
|
|||||||
20
pom.xml
20
pom.xml
@ -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.3</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.5.3</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.5.3.Final</version>
|
<version>${mapstruct.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user