[hibernate-commits] Hibernate SVN: r15922 - in validator/trunk: hibernate-validator and 2 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Feb 10 09:03:31 EST 2009


Author: hardy.ferentschik
Date: 2009-02-10 09:03:31 -0500 (Tue, 10 Feb 2009)
New Revision: 15922

Added:
   validator/trunk/hibernate-validator/readme.txt
Modified:
   validator/trunk/hibernate-validator-legacy/pom.xml
   validator/trunk/hibernate-validator/src/main/assembly/dist.xml
   validator/trunk/pom.xml
Log:
added readme.txt

Added: validator/trunk/hibernate-validator/readme.txt
===================================================================
--- validator/trunk/hibernate-validator/readme.txt	                        (rev 0)
+++ validator/trunk/hibernate-validator/readme.txt	2009-02-10 14:03:31 UTC (rev 15922)
@@ -0,0 +1,66 @@
+
+                          Hibernate Validator
+
+  What is it?
+  -----------
+
+  This is a reference implementation of JSR 303 - Bean Validation. 
+  Bean Validation defines a metadata model and API for JavaBean validation. 
+  The default metadata source is annotations, with the ability to override and extend 
+  the meta-data through the use of XML validation descriptors.
+
+  History
+  -------
+
+  Prior to version 4.x Hibernate Validators was based on a different source base which 
+  is not based JSR 303. This code can be accessed via 
+  http://anonsvn.jboss.org/repos/hibernate/validator/trunk/hibernate-validator-legacy
+
+  Documentation
+  -------------
+
+  The documentation available as of the date of this release is included in
+  HTML format in the dist/docs/ directory.
+
+  Release Notes
+  -------------
+
+  The full list of changes can be found at 
+  http://opensource.atlassian.com/projects/hibernate/secure/ConfigureReleaseNote.jspa?projectId=10090.
+
+  System Requirements
+  -------------------
+
+  JDK 1.5 or above.
+
+  Using Hibernate Validator
+  -------------------------
+
+  - Copy dist/hibernate-validator-*.jar together will all jar files from dist/lib into the 
+    classpath of your application 
+
+  or 
+
+  - Add the following to your maven or ivy dependency list:
+
+    <dependency>
+        <groupId>org.hibernate</groupId>
+        <artifactId>hibernate-validator</artifactId>
+        <version>x.y.z</version>
+    </dependency>
+
+    Hibernate Validator can be found in this repository: http://repository.jboss.com/maven2/  
+
+  Licensing
+  ---------
+
+  Please see the file called license.txt
+
+  Hibernate Validator URLS
+  ------------------------
+
+  Home Page:          http://validator.hibernate.org/
+  Downloads:          http://www.hibernate.org/6.html
+  Mailing Lists:      http://www.hibernate.org/20.html
+  Source Code:        http://anonsvn.jboss.org/repos/hibernate/validator/trunk/
+  Issue Tracking:     http://opensource.atlassian.com/projects/hibernate/browse/HV

Modified: validator/trunk/hibernate-validator/src/main/assembly/dist.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/assembly/dist.xml	2009-02-10 13:56:41 UTC (rev 15921)
+++ validator/trunk/hibernate-validator/src/main/assembly/dist.xml	2009-02-10 14:03:31 UTC (rev 15922)
@@ -45,13 +45,11 @@
         <fileSet>
             <directory>target/site/apidocs</directory>
             <outputDirectory>/dist/docs/api</outputDirectory>
-        </fileSet>
-<!--    
+        </fileSet>  
         <fileSet>
             <directory>target/docbook/publish/en-US</directory>
             <outputDirectory>/dist/docs/manual</outputDirectory>
         </fileSet>
--->
         <fileSet>
             <directory>.</directory>
             <outputDirectory></outputDirectory>

Modified: validator/trunk/hibernate-validator-legacy/pom.xml
===================================================================
--- validator/trunk/hibernate-validator-legacy/pom.xml	2009-02-10 13:56:41 UTC (rev 15921)
+++ validator/trunk/hibernate-validator-legacy/pom.xml	2009-02-10 14:03:31 UTC (rev 15922)
@@ -22,10 +22,7 @@
     <description>Following the DRY (Don't Repeat Yourself) principle, Hibernate Validator let's you express your domain
         constraints once (and only once) and ensure their compliance at various level of your system automatically.
     </description>
-    <scm>
-        <url>http://anonhibernate.labs.jboss.com/trunk/HibernateExt/validator</url>
-    </scm>
-
+    
     <dependencies>
         <dependency>
             <groupId>org.hibernate</groupId>

Modified: validator/trunk/pom.xml
===================================================================
--- validator/trunk/pom.xml	2009-02-10 13:56:41 UTC (rev 15921)
+++ validator/trunk/pom.xml	2009-02-10 14:03:31 UTC (rev 15922)
@@ -138,7 +138,7 @@
 
     <issueManagement>
         <system>JIRA</system>
-        <url>http://opensource.atlassian.com/projects/hibernate/browse/BVAL</url>
+        <url>http://opensource.atlassian.com/projects/hibernate/browse/HV</url>
     </issueManagement>
 
     <inceptionYear>2007</inceptionYear>
@@ -211,5 +211,4 @@
             </plugin>
         </plugins>
     </reporting>
-
 </project>




More information about the hibernate-commits mailing list