| Group ID: |
dev.ditsche |
| Artifact ID: |
validator |
| Version: |
2.3.0 |
| Last modified: |
30.12.2020 20:36 |
| Packaging: |
jar |
| Name: |
Java Validator |
| Description: |
This is a simple validator that can be used
to validate incoming http requests in Spring Boot. |
| URL: |
https://github.com/ditschedev/validator |
| License: |
MIT License |
| Source: |
https://github.com/ditschedev/validator |
| Developers: |
Tobias Dittmann |
|
|
| Size: |
50.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/dev/ditsche/validator/2.3.0/validator-2.3.0.jar |
| POM: |
Show
hide
<?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>
<groupId>dev.ditsche</groupId>
<artifactId>validator</artifactId>
<version>2.3.0</version>
<packaging>jar</packaging>
<name>Java Validator</name>
<description>This is a simple validator that can be used
to validate incoming http requests in Spring Boot.
</description>
<url>https://github.com/ditschedev/validator</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Tobias Dittmann</name>
<email>hello@ditsche.dev</email>
<organization>dev.ditsche</organization>
<organizationUrl>http://github.com/ditschedev/</organizationUrl>
</developer>
</developers>
<properties>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.12</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.10</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.15.0</version>
</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>
<scm>
<connection>scm:git://github.com:ditschedev/validator.git</connection>
<developerConnection>scm:git:git@github.com:ditschedev/validator.git</developerConnection>
<url>https://github.com/ditschedev/validator</url>
<tag>v2.3.0</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.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>2.9.1</version>
<configuration>
<source>8</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</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>
<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>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Maven: |
<dependency>
<groupId>dev.ditsche</groupId>
<artifactId>validator</artifactId>
<version>2.3.0</version>
</dependency>
|
| Gradle: |
dev.ditsche:validator:2.3.0 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
JAR
assertj-core-3.15.0.jar
in org/assertj/assertj-core/3.15.0
-
JAR
commons-lang3-3.10.jar
in org/apache/commons/commons-lang3/3.10
-
[JAR]
junit-jupiter-5.6.2.jar
in org/junit/jupiter/junit-jupiter/5.6.2
-
[JAR]
lombok-1.18.12.jar
in org/projectlombok/lombok/1.18.12
|
| Dependency Graph: |
Show
Less
More
|