comparatorverifier
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.tomregan</groupId> <artifactId>comparatorverifier</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> <!-- Project Settings --> <groupId>io.github.tomregan</groupId> <artifactId>comparatorverifier</artifactId> <version>1.0.0</version> <dependencies> <!-- compile --> <dependency> <groupId>org.instancio</groupId> <artifactId>instancio-core</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <scope>compile</scope> </dependency> <!-- test --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit-pioneer</groupId> <artifactId>junit-pioneer</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <!-- compile --> <dependency> <groupId>org.instancio</groupId> <artifactId>instancio-core</artifactId> <version>5.4.1</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>2.0.17</version> </dependency> <!-- test --> <!-- bom --> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.12.2</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.junit-pioneer</groupId> <artifactId>junit-pioneer</artifactId> <version>2.3.0</version> </dependency> </dependencies> </dependencyManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>17</maven.compiler.release> </properties> <!-- Build Settings --> <build> <pluginManagement> <plugins> <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.4.1</version> </plugin> <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.3</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>3.1.4</version> </plugin> <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.21.0</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.9.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</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.11.2</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> <configuration> <failOnError>false</failOnError> <additionalJOptions> <additionalJOption>-Xdoclint:none</additionalJOption> </additionalJOptions> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.6.0</version> <configuration> <consoleOutput>true</consoleOutput> <configLocation>etc/checkstyle.xml</configLocation> <suppressionsLocation>etc/suppressions.xml</suppressionsLocation> </configuration> <executions> <execution> <id>checkstyle-check</id> <phase>process-sources</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce-rules</id> <phase>validate</phase> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>[3.9.5,)</version> </requireMavenVersion> <requireJavaVersion> <version>[21,)</version> </requireJavaVersion> <!-- Enforce all dependencies have explicit scopes --> <requireExplicitDependencyScope/> <!-- Fail the build if there are conflicting versions of the same dependency --> <requireUpperBoundDeps/> <!-- Ensure dependencies are only pulled from defined repositories --> <requireNoRepositories/> <requirePluginVersions/> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> </plugins> </build> <!-- Project Information --> <name>Comparator Verifier</name> <description> Comparator Verifier is intended for use in tests to validate the contract for Comparator is met. </description> <url>https://tomregan.github.io/comparatorverifier</url> <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> <developers> <developer> <name>Tom Regan</name> <email>pendant.4.daybeds@icloud.com</email> <organization>GitHub</organization> <organizationUrl>https://github.com/TomRegan</organizationUrl> </developer> </developers> <!-- Environment Settings --> <issueManagement> <system>github</system> <url>https://github.com/TomRegan/comparatorverifier/issues</url> </issueManagement> <ciManagement> <system>github</system> <url>https://github.com/TomRegan/tomregan.github.io/actions</url> </ciManagement> <scm> <connection>scm:git:git@github.com:TomRegan/comparatorverifier.git</connection> <developerConnection>scm:git:git@github.com:TomRegan/comparatorverifier.git</developerConnection> <url>https://github.com/TomRegan/comparatorverifier</url> </scm> <profiles> <profile> <id>github</id> <distributionManagement> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/tomregan/comparatorverifier</url> </repository> </distributionManagement> </profile> <profile> <id>central</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.4</version> </plugin> </plugins> </build> </profile> </profiles> </project>