nhojpatrick-versions-ruleset
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.nhojpatrick.versions</groupId>
<artifactId>nhojpatrick-versions-ruleset</artifactId>
<version>1.1</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 / -->
<modelVersion>4.0.0</modelVersion>
<!--parent / -->
<!--groupId / -->
<groupId>com.github.nhojpatrick.versions</groupId>
<!--artifactId / -->
<artifactId>nhojpatrick-versions-ruleset</artifactId>
<!--packaging / -->
<packaging>jar</packaging>
<!--name / -->
<name>Versions Rule Set</name>
<!--version / -->
<version>1.1</version>
<!--description / -->
<description>The Versions Rule Set project</description>
<!--url / -->
<url>https://github.com/nhojpatrick/nhojpatrick-versions-ruleset</url>
<!--prerequisites / -->
<!--issueManagement / -->
<!--ciManagement / -->
<!--inceptionYear / -->
<inceptionYear>2018</inceptionYear>
<!--mailingLists / -->
<!--developers / -->
<developers>
<developer>
<name>John Patrick</name>
<email>142304+nhojpatrick@users.noreply.github.com</email>
</developer>
</developers>
<!--contributors / -->
<!--licenses / -->
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<!--scm / -->
<scm>
<connection>scm:git:git://github.com/nhojpatrick/nhojpatrick-versions-ruleset.git</connection>
<developerConnection>scm:git:ssh://github.com:nhojpatrick/nhojpatrick-versions-ruleset.git</developerConnection>
<url>http://github.com/nhojpatrick/nhojpatrick-versions-ruleset/tree/master</url>
</scm>
<!--organization / -->
<!--build /-->
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.github.ekryd.sortpom</groupId>
<artifactId>sortpom-maven-plugin</artifactId>
<version>2.10.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.8,9),[11,)</version>
</requireJavaVersion>
<requireMavenVersion>
<version>[3.6.2,)</version>
</requireMavenVersion>
</rules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>${project.Automatic-Module-Name}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>remove-project-artifact-default</id>
<goals>
<goal>remove-project-artifact</goal>
</goals>
<configuration>
<removeAll>true</removeAll>
</configuration>
</execution>
<execution>
<id>remove-project-artifact-clean</id>
<phase>clean</phase>
<goals>
<goal>remove-project-artifact</goal>
</goals>
<configuration>
<removeAll>true</removeAll>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
<rulesUri>file:///${session.executionRootDirectory}/src/main/resources/com/github/nhojpatrick/versions/ruleset/rules.xml</rulesUri>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.ekryd.sortpom</groupId>
<artifactId>sortpom-maven-plugin</artifactId>
<executions>
<execution>
<id>sortpom-sort</id>
<phase>validate</phase>
<goals>
<goal>sort</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<executions>
<execution>
<id>versions-check</id>
<phase>validate</phase>
<goals>
<goal>display-parent-updates</goal>
<goal>display-dependency-updates</goal>
<goal>display-plugin-updates</goal>
<goal>display-property-updates</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>com/github/nhojpatrick/sortpom**</exclude>
</excludes>
</resource>
</resources>
</build>
<!--profiles / -->
<profiles>
<profile>
<id>cicd</id>
<properties>
<sort.skip>true</sort.skip>
</properties>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</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>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!--modules / -->
<!--repositories / -->
<!--pluginRepositories / -->
<!--dependencies / -->
<!--reports (Deprecated) / -->
<!--reporting / -->
<!--dependencyManagement / -->
<!--distributionManagement / -->
<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>
<!--properties / -->
<properties>
<!-- custom properties -->
<project.custom.encoding>UTF-8</project.custom.encoding>
<project.custom.java.version>1.8</project.custom.java.version>
<!-- override maven properties -->
<maven.test.failure.ignore>false</maven.test.failure.ignore>
<maven.compiler.source>${project.custom.java.version}</maven.compiler.source>
<maven.compiler.target>${project.custom.java.version}</maven.compiler.target>
<project.build.sourceEncoding>${project.custom.encoding}</project.build.sourceEncoding>
<project.build.outputEncoding>${project.custom.encoding}</project.build.outputEncoding>
<project.reporting.outputEncoding>${project.custom.encoding}</project.reporting.outputEncoding>
<!-- maven user properties -->
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
<generateBackupPoms>false</generateBackupPoms>
<!-- sortpom -->
<sort.createBackupFile>false</sort.createBackupFile>
<sort.nrOfIndentSpace>-1</sort.nrOfIndentSpace>
<sort.pomFile>pom.xml</sort.pomFile>
<sort.sortDependencies>groupId,artifactId,version,scope</sort.sortDependencies>
<sort.sortModules>true</sort.sortModules>
<sort.sortOrderFile>src/main/resources/com/github/nhojpatrick/sortpom/sortorderfile/nhojpatrick.xml</sort.sortOrderFile>
<sort.sortPlugins>groupId,artifactId,version,scope</sort.sortPlugins>
<sort.sortProperties>false</sort.sortProperties>
<!-- JPMS -->
<project.Automatic-Module-Name>com.github.nhojpatrick.versions.ruleset</project.Automatic-Module-Name>
</properties>
</project>