mapstruct-wither-support
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.nullzwo</groupId> <artifactId>mapstruct-wither-support</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>dev.nullzwo</groupId> <artifactId>mapstruct-wither-support</artifactId> <version>1.0.0</version> <name>mapstruct-wither-support</name> <url>https://github.com/Danny02/mapstruct-wither-support</url> <description>Mapstruct naming strategy that supports withers.</description> <licenses> <license> <name>Apache-2.0 License</name> <url>https://github.com/Danny02/mapstruct-wither-support/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <name>Daniel Heinrich</name> <email>danny@nullzwo.dev</email> <url>danny.nullzwo.dev</url> </developer> </developers> <issueManagement> <system>github</system> <url>https://github.com/Danny02/mapstruct-wither-support/issues</url> </issueManagement> <scm> <connection>scm:git:git://github.com/Danny02/mapstruct-wither-support.git</connection> <developerConnection>scm:git:ssh://github.com:Danny02/mapstruct-wither-support.git</developerConnection> <url>http://github.com/Danny02/mapstruct-wither-support</url> </scm> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.release>11</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <mapstruct.version>1.5.5.Final</mapstruct.version> </properties> <dependencies> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${mapstruct.version}</version> </dependency> </dependencies> <profiles> <profile> <id>ossrhDeploy</id> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> <dependencies> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.4.20</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <!-- Profil : Github Apache Maven Packages --> <profile> <id>githubDeploy</id> <distributionManagement> <repository> <id>github</id> <name>GitHub Danny02 Apache Maven Packages</name> <url>https://maven.pkg.github.com/Danny02/mapstruct-wither-support</url> </repository> </distributionManagement> </profile> </profiles> </project>