fluent-validation-support
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>foundation.fluent.api</groupId>
<artifactId>fluent-validation-support</artifactId>
<version>4.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">
<groupId>foundation.fluent.api</groupId>
<artifactId>fluent-validation-support</artifactId>
<version>4.1</version>
<modelVersion>4.0.0</modelVersion>
<name>Fluent validation support.</name>
<description>
Module provides various tools to build validation criteria either fluently or procedural way.
</description>
<url>https://github.com/c0stra/fluent-api-end-check/wiki/fluent-validation-support</url>
<licenses>
<license>
<name>New BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Ondrej Fischer</name>
<email>ondrej.fischer@gmail.com</email>
<url>http://github.com/c0stra</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/c0stra/fluent-validation-support.git</connection>
<developerConnection>scm:git:ssh://git@github.com/c0stra/fluent-validation-support.git</developerConnection>
<url>https://github.com/c0stra/fluent-validation-support</url>
<tag>fluent-validation-support-4.1</tag>
</scm>
<properties>
<java.version>1.8</java.version>
<compiler.plugin.version>3.7.0</compiler.plugin.version>
<testng.version>7.1.0</testng.version>
<mockito.version>2.18.3</mockito.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<apt.source.directory>${project.basedir}/src/apt/java</apt.source.directory>
</properties>
<dependencies>
<dependency>
<groupId>foundation.fluent.api</groupId>
<artifactId>fluent-api-end-check</artifactId>
<version>1.23</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<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>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.plugin.version}</version>
<executions>
<execution>
<id>default-compile</id>
<phase>compile</phase>
<goals><goal>compile</goal></goals>
<configuration>
<compileSourceRoots>
<compileSourceRoot>${apt.source.directory}</compileSourceRoot>
</compileSourceRoots>
</configuration>
</execution>
<execution>
<id>main-compile</id>
<phase>compile</phase>
<goals><goal>compile</goal></goals>
<configuration>
<annotationProcessors>
<annotationProcessor>fluent.validation.processor.FactoryGenerator</annotationProcessor>
</annotationProcessors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.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.0.1</version>
<executions>
<execution>
<configuration>
<sourcepath>${apt.source.directory};${project.build.sourceDirectory}</sourcepath>
</configuration>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<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-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure>
<stagingProgressTimeoutMinutes>15</stagingProgressTimeoutMinutes>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>