validation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.bernardomg.framework</groupId>
<artifactId>validation</artifactId>
<version>0.2.5</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>
<!-- ********************************************** -->
<!-- ***************** PARENT POM ***************** -->
<!-- ********************************************** -->
<parent>
<groupId>com.bernardomg.maven</groupId>
<artifactId>base-pom</artifactId>
<version>1.5.11</version>
</parent>
<!-- ********************************************** -->
<!-- **************** PROJECT INFO **************** -->
<!-- ********************************************** -->
<groupId>com.bernardomg.framework</groupId>
<artifactId>validation</artifactId>
<version>0.2.5</version>
<packaging>jar</packaging>
<name>Validation</name>
<description>Validation tools</description>
<url>https://github.com/bernardo-mg/java-validation</url>
<inceptionYear>2023</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- ********************************************** -->
<!-- ************ RESOURCES AND SERVICES ********** -->
<!-- ********************************************** -->
<scm>
<connection>scm:git:https://github.com/bernardo-mg/java-validation.git</connection>
<developerConnection>scm:git:https://github.com/bernardo-mg/java-validation.git</developerConnection>
<tag>head</tag>
<url>https://www.github.com/bernardo-mg/java-validation</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://www.github.com/bernardo-mg/java-validation/issues</url>
</issueManagement>
<ciManagement>
<system>Github</system>
<url>https://www.github.com/bernardo-mg/java-validation/actions</url>
<notifiers />
</ciManagement>
<!-- ********************************************** -->
<!-- ****************** PROFILES ****************** -->
<!-- ********************************************** -->
<profiles>
<!-- ============================================== -->
<!-- ============ DEPLOYMENT PROFILES ============= -->
<!-- ============================================== -->
<profile>
<!-- Site deployment profile -->
<!-- Sets the site repository to point to the releases repo -->
<id>deployment-site</id>
<activation>
<!-- Active by default so the repository appears in the reports -->
<activeByDefault>true</activeByDefault>
</activation>
<distributionManagement>
<site>
<id>site</id>
<name>Project Documentation Site</name>
<!-- The URL should be set externally -->
<url>${site.url}</url>
</site>
</distributionManagement>
</profile>
<profile>
<!-- Github deployment profile. -->
<id>deployment-github</id>
<distributionManagement>
<repository>
<!-- Github repository -->
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/bernardo-mg/java-validation</url>
</repository>
</distributionManagement>
</profile>
<profile>
<!-- Central deployment profile. -->
<id>deployment-central</id>
<build>
<plugins>
<plugin>
<!-- GPG -->
<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>
<configuration>
<!-- Prevent gpg from using pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<plugin>
<!-- Maven Central publishing -->
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- ********************************************** -->
<!-- *********** ORGANIZATION AND MEMBERS ********* -->
<!-- ********************************************** -->
<organization>
<name>Bernardo Martínez Garrido</name>
<url>https://github.com/Bernardo-MG</url>
</organization>
<developers>
<developer>
<id>bmg</id>
<name>Bernardo Martínez Garrido</name>
<email>programming@bernardomg.com</email>
<url>https://github.com/Bernardo-MG</url>
<organization>Bernardo Martínez Garrido</organization>
<organizationUrl>https://github.com/Bernardo-MG</organizationUrl>
<roles>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
<properties />
</developer>
</developers>
<!-- ********************************************** -->
<!-- **************** PROPERTIES ****************** -->
<!-- ********************************************** -->
<properties>
<!-- ============================================== -->
<!-- =============== MANIFEST DATA ================ -->
<!-- ============================================== -->
<manifest.name>com/bernardomg/java-validation</manifest.name>
<!-- ============================================== -->
<!-- =========== DEPENDENCIES VERSIONS ============ -->
<!-- ============================================== -->
<archunit.version>1.4.1</archunit.version>
<assertj.version>3.27.3</assertj.version>
<jakarta.validation.version>3.1.1</jakarta.validation.version>
<junit.version>5.13.1</junit.version>
<log4j.version>2.24.3</log4j.version>
<mockito.version>5.18.0</mockito.version>
<passay.version>1.6.6</passay.version>
<slf4j.version>2.0.17</slf4j.version>
<!-- ============================================== -->
<!-- ============ PLUGIN CONFIGURATION ============ -->
<!-- ============================================== -->
<!-- Checkstyle customized rules file -->
<checkstyle.config.location>${project.basedir}/src/config/checkstyle/checkstyle-rules.xml</checkstyle.config.location>
<!-- ============================================== -->
<!-- ================= MAVEN SITE ================= -->
<!-- ============================================== -->
<site.skin.version>2.4.1</site.skin.version>
<mavenURL>http://mvnrepository.com/artifact/com.bernardomg.framework/validation</mavenURL>
<githubArtifactURL><![CDATA[https://github.com/Bernardo-MG?tab=packages&repo_name=java-validation]]></githubArtifactURL>
</properties>
<!-- ********************************************** -->
<!-- *************** DEPENDENCIES ***************** -->
<!-- ********************************************** -->
<dependencyManagement>
<dependencies>
<dependency>
<!-- JUnit BOM -->
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<!-- Mockito BOM -->
<groupId>org.mockito</groupId>
<artifactId>mockito-bom</artifactId>
<version>${mockito.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<!-- AssertJ BOM -->
<groupId>org.assertj</groupId>
<artifactId>assertj-bom</artifactId>
<version>${assertj.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- ============================================== -->
<!-- ================== LOGGING =================== -->
<!-- ============================================== -->
<dependency>
<!-- SL4J API -->
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<!-- Log4j SLF4J Bridge -->
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>${log4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- Log4j core -->
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- Log4j Commons Logging Bridge -->
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jcl</artifactId>
<version>${log4j.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- ============================================== -->
<!-- ================ VALIDATION ================== -->
<!-- ============================================== -->
<dependency>
<!-- Jakarta validation -->
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
<version>${jakarta.validation.version}</version>
</dependency>
<!-- ============================================== -->
<!-- =================== PASSAY =================== -->
<!-- ============================================== -->
<dependency>
<!-- Passay -->
<groupId>org.passay</groupId>
<artifactId>passay</artifactId>
<version>${passay.version}</version>
</dependency>
<!-- ============================================== -->
<!-- ======= TEST ENVIRONMENT DEPENDENCIES ======== -->
<!-- ============================================== -->
<dependency>
<!-- JUnit Jupiter Engine -->
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<!-- Mockito -->
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<!-- Mockito JUnit Jupiter -->
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<!-- ArchUnit -->
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5</artifactId>
<version>${archunit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- AssertJ -->
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<!-- ********************************************** -->
<!-- ******************* BUILD ******************** -->
<!-- ********************************************** -->
<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
<!-- Changes -->
<!-- Takes care of the changes log -->
<!-- It is set to also validate the changes log file -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<executions>
<!-- Changes plugin is bound to the pre-site phase -->
<execution>
<id>check-changes</id>
<phase>pre-site</phase>
<goals>
<goal>changes-check</goal>
</goals>
</execution>
<execution>
<id>validate-changes</id>
<phase>pre-site</phase>
<goals>
<goal>changes-validate</goal>
</goals>
<configuration>
<failOnError>true</failOnError>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<!-- Site -->
<!-- Generates the Maven Site -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<dependencies>
<dependency>
<!-- Docs Maven Skin -->
<groupId>com.bernardomg.maven.skins</groupId>
<artifactId>docs-maven-skin</artifactId>
<version>${site.skin.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<!-- ********************************************** -->
<!-- ****************** REPORTS ******************* -->
<!-- ********************************************** -->
<reporting>
<plugins>
<plugin>
<!-- PMD -->
<!-- Checks that the code complies with a series of code quality
rules -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<rulesets>
<!-- The customized rules file -->
<ruleset>${project.basedir}/src/config/pmd/pmd-rules.xml</ruleset>
</rulesets>
</configuration>
</plugin>
</plugins>
</reporting>
</project>