| Group ID: |
io.github.algotx |
| Artifact ID: |
fluent-validators |
| Version: |
1.0.0 |
| Last modified: |
06.03.2026 19:04 |
| Packaging: |
jar |
| Name: |
Fluent Validators |
| Description: |
A lightweight, zero-dependency Java validation library with a fluent API |
| URL: |
https://github.com/algotx/fluent-validators |
|
|
| Size: |
14.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/io/github/algotx/fluent-validators/1.0.0/fluent-validators-1.0.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>io.github.algotx</groupId>
<artifactId>fluent-validators</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>Fluent Validators</name>
<description>A lightweight, zero-dependency Java validation library with a fluent API</description>
<url>https://github.com/algotx/fluent-validators</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<id>algotx</id>
<name>Ukasha Ahmed</name>
<email>ukashasyed15@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/algotx/fluent-validators.git</connection>
<developerConnection>scm:git:ssh://git@github.com/algotx/fluent-validators.git</developerConnection>
<url>https://github.com/algotx/fluent-validators</url>
</scm>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</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.6.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>C:\Program Files\GnuPG\bin\gpg.exe</executable>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh</publishingServerId>
<tokenAuth>true</tokenAuth>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Maven: |
<dependency>
<groupId>io.github.algotx</groupId>
<artifactId>fluent-validators</artifactId>
<version>1.0.0</version>
</dependency>
|
| Gradle: |
io.github.algotx:fluent-validators:1.0.0 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
junit-jupiter-5.10.0.jar
in org/junit/jupiter/junit-jupiter/5.10.0
|
| Dependency Graph: |
Show
Less
More
|