Bean Validation API.
Bean Validation API..
Here is the list of declaration for validation-api. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>1.1.0.Alpha1</version> </dependency>
If you think this Maven repository POM file listing for validation-api is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The following packages are defined in the validation-api-1.1.0.Alpha1.jar
javax.validation javax.validation.bootstrap javax.validation.constraints javax.validation.groups javax.validation.metadata javax.validation.spi
Here is the content of the POM file.
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>1.1.0.Alpha1</version> <packaging>jar</packaging> <name>Bean Validation API</name> <url>http://beanvalidation.org</url> <description> Bean Validation API. </description> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.2.1</version> <configuration> <allowTimestampedSnapshots>true</allowTimestampedSnapshots> <remoteTagging>true</remoteTagging> <goals>deploy</goals> </configuration> </plugin> </plugins> </pluginManagement> </build> <issueManagement> <system>JIRA</system> <url>http://opensource.atlassian.com/projects/hibernate/browse/BVAL</url> </issueManagement> <inceptionYear>2007</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/beanvalidation/beanvalidation-api.git</connection> <developerConnection>scm:git:git@github.com:beanvalidation/beanvalidation-api.git</developerConnection> <url>https://github.com/beanvalidation/beanvalidation-api</url> </scm> <distributionManagement> <repository> <id>jboss-releases-repository</id> <name>JBoss Releases Repository</name> <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>jboss-snapshots-repository</id> <name>JBoss Snapshots Repository</name> <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>release</id> <properties> <createChecksum>true</createChecksum> </properties> </profile> </profiles> </project>