Download bval-extras-1.1.2.jar file

Introduction

You can download bval-extras-1.1.2.jar in this page.

License

Apache License

Type List

bval-extras-1.1.2.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.bval/bval-extras/pom.properties
META-INF/maven/org.apache.bval/bval-extras/pom.xml
org.apache.bval.extras.constraints.checkdigit.ABANumber.class
org.apache.bval.extras.constraints.checkdigit.ABANumberValidator.class
org.apache.bval.extras.constraints.checkdigit.CUSIP.class
org.apache.bval.extras.constraints.checkdigit.CUSIPValidator.class
org.apache.bval.extras.constraints.checkdigit.EAN13.class
org.apache.bval.extras.constraints.checkdigit.EAN13Validator.class
org.apache.bval.extras.constraints.checkdigit.IBAN.class
org.apache.bval.extras.constraints.checkdigit.IBANValidator.class
org.apache.bval.extras.constraints.checkdigit.ISBN10.class
org.apache.bval.extras.constraints.checkdigit.ISBN10Validator.class
org.apache.bval.extras.constraints.checkdigit.Luhn.class
org.apache.bval.extras.constraints.checkdigit.LuhnValidator.class
org.apache.bval.extras.constraints.checkdigit.ModulusValidator.class
org.apache.bval.extras.constraints.checkdigit.Sedol.class
org.apache.bval.extras.constraints.checkdigit.SedolValidator.class
org.apache.bval.extras.constraints.checkdigit.Verhoeff.class
org.apache.bval.extras.constraints.checkdigit.VerhoeffValidator.class
org.apache.bval.extras.constraints.creditcard.AmericanExpress.class
org.apache.bval.extras.constraints.creditcard.Diners.class
org.apache.bval.extras.constraints.creditcard.Discover.class
org.apache.bval.extras.constraints.creditcard.Mastercard.class
org.apache.bval.extras.constraints.creditcard.Visa.class
org.apache.bval.extras.constraints.file.Directory.class
org.apache.bval.extras.constraints.file.DirectoryValidator.class
org.apache.bval.extras.constraints.file.NotDirectory.class
org.apache.bval.extras.constraints.file.NotDirectoryValidator.class
org.apache.bval.extras.constraints.file.Symlink.class
org.apache.bval.extras.constraints.file.SymlinkValidator.class
org.apache.bval.extras.constraints.net.Domain.class
org.apache.bval.extras.constraints.net.DomainValidator.class
org.apache.bval.extras.constraints.net.InetAddress.class
org.apache.bval.extras.constraints.net.InetAddressValidator.class

Pom

bval-extras-1.1.2.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 "License"); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
-->
<!--
	Maven release plugin requires the project tag to be on a single line.
-->
<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/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.apache.bval</groupId>
        <artifactId>bval-parent</artifactId>
        <version>1.1.2</version>
    </parent>

    <artifactId>bval-extras</artifactId>
    <name>Apache BVal :: bval-extras (optional)</name>
    <packaging>bundle</packaging>

    <description>BVal - non-JSR303 routines and constraints</description>

    <dependencies>
        <dependency>
            <groupId>org.apache.bval</groupId>
            <artifactId>bval-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.bval</groupId>
            <artifactId>bval-jsr</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <profiles>
        <!--
            default profile using geronimo-validation_1.0_spec.jar
            active when property "ri" is not present.
        -->
        <profile>
            <id>geronimo</id>
            <activation>
                <property>
                    <name>!ri</name>
                </property>
            </activation>
            <dependencies>
                <dependency>
                    <groupId>org.apache.geronimo.specs</groupId>
                    <artifactId>geronimo-validation_1.1_spec</artifactId>
                    <scope>provided</scope>
                </dependency>
            </dependencies>
        </profile>
        <!--
            optional profile using javax.validation/validation-api.jar
            from RI manually active when property "-Pri" is provided.
        -->
        <profile>
            <id>ri</id>
            <activation>
                <property>
                    <name>ri</name>
                </property>
            </activation>
            <dependencies>
                <dependency>
                    <groupId>javax.validation</groupId>
                    <artifactId>validation-api</artifactId>
                    <!-- allow users to choose an API provider -->
                    <scope>provided</scope>
                </dependency>
            </dependencies>
        </profile>
    </profiles>

    <build>
        <defaultGoal>install</defaultGoal>

        <resources>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>
    </build>

</project>

POM Entry

<dependency>
   <groupId>org.apache.bval</groupId>
   <artifactId>bval-extras</artifactId>
   <version>1.1.2</version>
</dependency>

Download

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



Download bval-extras-1.1.2.jar file




PreviousNext

Related