1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<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>org.netbeans</groupId>
<artifactId>simple-validation</artifactId>
<packaging>jar</packaging>
<version>0.9</version>
<name>Simple Validation API</name>
<description>
This is a simple library for quickly adding validation code to
Swing user-interfaces. It handles validating user input when
the user changes a component's value, showing error messages
and decorating components to indicate which component is the
source of the problem. It contains a large number of built-in
validators to handle most common situations, such as
validating numbers, email addresses, urls and so forth.
</description>
<url>http://kenai.com/projects/simplevalidation/</url>
<licenses>
<license>
<name>CDDL</name>
<url>http://www.sun.com/cddl/cddl.html</url>
</license>
<license>
<name>GPL-CP</name>
<url>http://www.gnu.org/software/classpath/license.html</url>
</license>
</licenses>
<developers>
<developer>
<id>tim</id>
<name>Tim Boudreau</name>
<url>http://kenai.com/people/5777-Tim-Boudreau</url>
</developer>
<developer>
<id>hugoheden</id>
<url>http://kenai.com/people/25343-hugoheden</url>
</developer>
<developer>
<id>mkleint</id>
<name>Milos Kleint</name>
<url>http://kenai.com/people/2114-mkleint</url>
</developer>
</developers>
<issueManagement>
<system>jira</system>
<url>http://kenai.com/jira/browse/SIMPLEVALIDATION</url>
</issueManagement>
<scm>
<connection>scm:svn:https://svn.kenai.com/svn/simplevalidation~src/maven</connection>
<developerConnection>scm:svn:https://svn.kenai.com/svn/simplevalidation~src/maven</developerConnection>
<url>http://kenai.com/projects/simplevalidation/sources/src/show</url>
</scm>
</project>
|