java11-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>tech.raaf</groupId> <artifactId>java11-archetype</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> <packaging>maven-archetype</packaging> <name>java11-archetype</name> <artifactId>java11-archetype</artifactId> <groupId>tech.raaf</groupId> <version>1.0.0</version> <licenses> <license> <name>MIT</name> </license> </licenses> <description>An example Maven project using Java 11 and JUnit 5.x</description> <url>https://github.com/raaftech/java11-archetype</url> <organization> <name>RAAF Technology</name> <url>http://raaf.tech/</url> </organization> <scm> <url>https://github.com/raaftech/java11-archetype</url> <connection>https://github.com/raaftech/java11-archetype.git</connection> <developerConnection>scm:git:ssh://git@github.com/raaftech/java11-archetype.git</developerConnection> <tag>v1.0.0</tag> </scm> <issueManagement> <system>Issues</system> <url>https://github.com/raaftech/java11-archetype/issues</url> </issueManagement> <ciManagement> <system>Pipelines</system> <url>https://github.com/raaftech/java11-archetype/pipelines</url> </ciManagement> <contributors> <contributor> <name>Stephan Kaffa</name> <email>stephan@raaf.tech</email> <organization>RAAF Technology</organization> <organizationUrl>http://raaf.tech/</organizationUrl> <roles> <role>scrum-master</role> </roles> <timezone>Europe/Amsterdam</timezone> </contributor> </contributors> <developers> <developer> <id>rubin</id> <name>Rubin Simons</name> <email>rubin@raaf.tech</email> <organization>RAAF Technology</organization> <organizationUrl>http://raaf.tech/</organizationUrl> <roles> <role>developer</role> </roles> <timezone>Europe/Amsterdam</timezone> </developer> <developer> <id>freek</id> <name>Freek Alleman</name> <email>freek@raaf.tech</email> <organization>RAAF Technology</organization> <organizationUrl>http://raaf.tech/</organizationUrl> <roles> <role>developer</role> </roles> <timezone>Europe/Amsterdam</timezone> </developer> <developer> <id>jasper</id> <name>Jasper Spoel</name> <email>jasper@raaf.tech</email> <organization>RAAF Technology</organization> <organizationUrl>http://raaf.tech/</organizationUrl> <roles> <role>developer</role> </roles> <timezone>Europe/Amsterdam</timezone> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>8</java.version> <maven.archetype.plugin.version>3.0.1</maven.archetype.plugin.version> <maven.compiler.plugin.version>3.8.0</maven.compiler.plugin.version> <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version> <maven.jar.plugin.version>3.1.1</maven.jar.plugin.version> <maven.javadoc.plugin.version>3.0.1</maven.javadoc.plugin.version> <maven.release.plugin.version>2.5.3</maven.release.plugin.version> <maven.source.plugin.version>3.0.1</maven.source.plugin.version> <maven.surefire.plugin.version>2.22.1</maven.surefire.plugin.version> <codehaus.versions.plugin>2.7</codehaus.versions.plugin> <sonatype.nexus.plugin.version>1.6.8</sonatype.nexus.plugin.version> </properties> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>${maven.archetype.plugin.version}</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>${maven.archetype.plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <configuration> <keyname>info@raaf.tech</keyname> </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-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven.release.plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <tagNameFormat>v@{project.version}</tagNameFormat> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${codehaus.versions.plugin}</version> <configuration> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${sonatype.nexus.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>