Download restx-validation-0.34.jar file

Introduction

You can download restx-validation-0.34.jar in this page.

License

Open Source

Type List

restx-validation-0.34.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/io.restx/restx-validation/pom.properties
META-INF/maven/io.restx/restx-validation/pom.xml
META-INF/services/restx.factory.FactoryMachine
restx.validation.ValidatorFactory.class
restx.validation.ValidatorFactoryFactoryMachine.class

Pom

restx-validation-0.34.pom file content.

<?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">
    <parent>
        <groupId>io.restx</groupId>
        <artifactId>restx-parent</artifactId>
        <version>0.34</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <groupId>io.restx</groupId>
    <artifactId>restx-validation</artifactId>
    <version>0.34</version>
    <packaging>jar</packaging>
    <name>restx-validation</name>

    <properties>
        <restx.version>0.34</restx.version>
        <maven.compiler.target>1.7</maven.compiler.target>
        <maven.compiler.source>1.7</maven.compiler.source>
        <hibernate-validator.version>5.0.1.Final</hibernate-validator.version>
        <el.api.version>2.2</el.api.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>io.restx</groupId>
            <artifactId>restx-factory</artifactId>
            <version>${restx.version}</version>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-validator</artifactId>
            <version>${hibernate-validator.version}</version>
            <!--
            Using compile scope here, and not runtime, because we may need to use some
             hibernate-validator specific annotations (like @Email)
            -->
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>javax.el</groupId>
            <artifactId>el-api</artifactId>
            <version>${el.api.version}</version>
        </dependency>
        <dependency>
          <groupId>org.glassfish.web</groupId>
          <artifactId>el-impl</artifactId>
          <version>${el.api.version}</version>
          <scope>runtime</scope>
        </dependency>
    </dependencies>

</project>

POM Entry

<dependency>
   <groupId>io.restx</groupId>
   <artifactId>restx-validation</artifactId>
   <version>0.34</version>
</dependency>

Download

If you think the following restx-validation-0.34.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download restx-validation-0.34.jar file




PreviousNext

Related