validate
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>cc.renken</groupId>
<artifactId>validate</artifactId>
<version>1.0.1</version>
</dependency><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>
<groupId>cc.renken</groupId>
<artifactId>parent</artifactId>
<version>1.2.0</version>
</parent>
<!-- project coordinates -->
<artifactId>validate</artifactId>
<version>1.0.1</version>
<packaging>jar</packaging>
<name>cc.renken:validate</name>
<description>A library that provides some custom generic validators not found in other libraries.</description>
<url>https://gitlab.com/funsheep/jobs</url>
<licenses>
<license>
<name>Mozilla Public License Version 2.0</name>
<url>https://www.mozilla.org/media/MPL/2.0/index.txt</url>
</license>
</licenses>
<issueManagement>
<url>https://gitlab.com/funsheep/validate/issues</url>
<system>Gitlab</system>
</issueManagement>
<scm>
<connection>scm:git:git://gitlab.com/funsheep/validate.git</connection>
<developerConnection>scm:git:https://gitlab.com/funsheep/validate.git</developerConnection>
<url>https://gitlab.com/funsheep/validate/tree/develop</url>
</scm>
<developers>
<developer>
<name>Hendrik Renken</name>
<email>hendrik@renken.cc</email>
<organization>cc.renken</organization>
<organizationUrl>https://gitlab.com/funsheep/</organizationUrl>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.0.17.Final</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.github.koraktor</groupId>
<artifactId>mavanagaiata</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>