Apache Bean Validation :: bval-jsr303.
Implementation specific classes for JSR 303 Bean Validation 1.0.
Here is the list of declaration for bval-jsr303. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.bval</groupId> <artifactId>bval-jsr303</artifactId> <version>0.3-incubating</version> </dependency>
If you think this Maven repository POM file listing for bval-jsr303 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The following plugins are used in the bval-jsr303-0.3-incubating.jar
The following packages are defined in the bval-jsr303-0.3-incubating.jar
org.apache.bval.constraints org.apache.bval.jsr303 org.apache.bval.jsr303.extensions org.apache.bval.jsr303.groups org.apache.bval.jsr303.resolver org.apache.bval.jsr303.util org.apache.bval.jsr303.xml
Here is the content of the POM file.
<?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>0.3-incubating</version> </parent> <artifactId>bval-jsr303</artifactId> <name>Apache Bean Validation :: bval-jsr303</name> <packaging>jar</packaging> <description>Implementation specific classes for JSR 303 Bean Validation 1.0</description> <profiles> <profile> <id>jaxb</id> <activation> <jdk>1.5</jdk> </activation> <dependencies> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>2.1.3</version> </dependency> </dependencies> </profile> <!-- 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.0_spec</artifactId> <!-- allow users to choose an API provider --> <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> <dependencies> <dependency> <groupId>org.apache.bval</groupId> <artifactId>bval-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <!-- optional dependencies --> <dependency> <groupId>org.apache.bval</groupId> <artifactId>bval-xstream</artifactId> <version>${project.version}</version> <!-- don't pull into OSGi bundle --> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jpa_2.0_spec</artifactId> <!-- allow users to choose an API provider --> <scope>provided</scope> <optional>true</optional> </dependency> <!-- need for testcase logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>install</defaultGoal> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> <resource> <directory>src/main/xsd</directory> <targetPath>META-INF</targetPath> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <goals> <goal>xjc</goal> </goals> </execution> </executions> <configuration> <packageName>org.apache.bval.jsr303.xml</packageName> <extension>true</extension> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>test-jar</id> <phase>package</phase> <goals> <goal>test-jar</goal> </goals> <inherited>false</inherited> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> <includes> <include>**/*Test.java</include> <include>**/*TestCase.java</include> </includes> </configuration> </plugin> </plugins> </build> </project>