dozer-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.dozermapper</groupId> <artifactId>dozer-parent</artifactId> <version>7.0.0</version> </dependency>
<?xml version="1.0"?> <!-- Copyright 2005-2019 Dozer Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> <relativePath/> </parent> <groupId>com.github.dozermapper</groupId> <artifactId>dozer-parent</artifactId> <packaging>pom</packaging> <version>7.0.0</version> <name>Dozer :: Parent</name> <description>Dozer is a powerful Java Bean to Java Bean mapper that recursively copies data from one object to another</description> <organization> <name>dozer</name> <url>https://github.com/DozerMapper/dozer</url> </organization> <inceptionYear>2005</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https//github.com/DozerMapper/dozer</connection> <developerConnection>scm:git:git@github.com:DozerMapper/dozer.git</developerConnection> <url>https://github.com/DozerMapper/Dozer</url> <tag>HEAD</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/DozerMapper/dozer/issues</url> </issueManagement> <ciManagement> <system>github-actions</system> <url>https://github.com/DozerMapper/dozer/actions</url> </ciManagement> <modules> <module>building-tools</module> <module>bom-dependencies</module> <module>plugins-parent</module> <module>core</module> <module>dozer-integrations</module> </modules> <properties> <!-- Project settings --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.java.version>${java.specification.version}</project.java.version> <!-- License --> <license.failIfMissing>true</license.failIfMissing> <license.failIfUnknown>true</license.failIfUnknown> <!-- Top level versions; alphabetical order --> <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> <maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> <license-maven-plugin.version>4.3</license-maven-plugin.version> <directory-maven-plugin.version>1.0</directory-maven-plugin.version> <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> <versions-maven-plugin.version>2.16.2</versions-maven-plugin.version> <building-tools.version>7.0.0</building-tools.version> </properties> <build> <defaultGoal>install</defaultGoal> <pluginManagement> <plugins> <!-- Alphabetical order --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${versions-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.commonjava.maven.plugins</groupId> <artifactId>directory-maven-plugin</artifactId> <version>${directory-maven-plugin.version}</version> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <!-- Alphabetical order --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <id>enforce</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.8.8</version> </requireMavenVersion> <requireJavaVersion> <version>${project.java.version}</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.commonjava.maven.plugins</groupId> <artifactId>directory-maven-plugin</artifactId> <executions> <execution> <id>directories</id> <goals> <goal>directory-of</goal> </goals> <phase>initialize</phase> <configuration> <property>dozer.basedir</property> <project> <groupId>com.github.dozermapper</groupId> <artifactId>dozer-parent</artifactId> </project> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <licenseSets> <licenseSet> <header>building-tools/src/main/resources/LICENSE-HEADER.txt</header> <excludes> <exclude>.mvn/**</exclude> <exclude>mvnw</exclude> <exclude>mvnw.cmd</exclude> <exclude>**/LICENSE-HEADER.txt</exclude> <exclude>**/LICENSE</exclude> <exclude>**/*.asc</exclude> <exclude>**/*.asc.enc</exclude> <exclude>**/*.md</exclude> <exclude>**/*.adoc</exclude> <exclude>**/*.jpeg</exclude> <exclude>**/mockito-extensions/**</exclude> <exclude>.github/**</exclude> </excludes> </licenseSet> </licenseSets> <mapping> <cfg>SCRIPT_STYLE</cfg> <index>SCRIPT_STYLE</index> <factories>SCRIPT_STYLE</factories> <handlers>SCRIPT_STYLE</handlers> <java>SLASHSTAR_STYLE</java> <proto>SLASHSTAR_STYLE</proto> <schemas>SCRIPT_STYLE</schemas> </mapping> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release-ossrh</id> <build> <plugins> <!-- Alphabetical order --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </profile> <profile> <id>release-github</id> <distributionManagement> <snapshotRepository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/DozerMapper/dozer</url> </snapshotRepository> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/DozerMapper/dozer</url> </repository> </distributionManagement> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>snapshots.sonatype.org</id> <name>Sonatype Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>false</enabled> </releases> </repository> <repository> <id>releases.sonatype.org</id> <name>Sonatype Releases</name> <url>https://oss.sonatype.org/content/repositories/releases/</url> <snapshots> <enabled>false</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>snapshots.sonatype.org</id> <name>Sonatype Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>false</enabled> </releases> </pluginRepository> <pluginRepository> <id>releases.sonatype.org</id> <name>Sonatype Releases</name> <url>https://oss.sonatype.org/content/repositories/releases/</url> <snapshots> <enabled>false</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </pluginRepository> </pluginRepositories> </project>