Author: hardy.ferentschik
Date: 2009-07-18 07:31:19 -0400 (Sat, 18 Jul 2009)
New Revision: 17161
Modified:
validator/trunk/hibernate-validator/readme.txt
validator/trunk/hibernate-validator/src/main/assembly/dist.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml
Log:
udated some documentation and links in preperaton for Beta2 release
Modified: validator/trunk/hibernate-validator/readme.txt
===================================================================
--- validator/trunk/hibernate-validator/readme.txt 2009-07-18 10:43:49 UTC (rev 17160)
+++ validator/trunk/hibernate-validator/readme.txt 2009-07-18 11:31:19 UTC (rev 17161)
@@ -13,18 +13,18 @@
-------
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
+ is not based on JSR 303. This code can be accessed via
http://anonsvn.jboss.org/repos/hibernate/validator/trunk/hibernate-valida...
Status
------
- This is an beta release and even though it should be nearly feature complete there
might be
- still some variances between the specification and this implementation.
+ This is an beta release and even though it is nearly feature complete there might be
+ still variances between the specification and this implementation.
You can find more information about the current state of the implementation on the
Bean Validation RI Roadmap -
http://www.hibernate.org/459.html and there is copy of
- JSR as of the time of this release available here -
http://in.relation.to/service/File/11150
+ JSR 303 -as of the time of this release- available here:
http://in.relation.to/service/File/12014
Documentation
-------------
@@ -47,7 +47,8 @@
-------------------------
- Copy hibernate-validator-*.jar together will all jar files from lib into the
- classpath of your application
+ classpath of your application. In case you are running on JDK5 you have to also
include
+ all the jar files from the jdk5 subdirectory.
or
Modified: validator/trunk/hibernate-validator/src/main/assembly/dist.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/assembly/dist.xml 2009-07-18 10:43:49 UTC
(rev 17160)
+++ validator/trunk/hibernate-validator/src/main/assembly/dist.xml 2009-07-18 11:31:19 UTC
(rev 17161)
@@ -33,8 +33,23 @@
<scope>runtime</scope>
<excludes>
<exclude>com.googlecode.jtype:jtype</exclude>
+ <exclude>javax.xml.bind:jaxb-api</exclude>
+ <exclude>com.sun.xml.bind:jaxb-impl</exclude>
+ <exclude>javax.xml.stream:stax-api</exclude>
+ <exclude>javax.activation:activation</exclude>
</excludes>
</dependencySet>
+ <dependencySet>
+ <useProjectArtifact>false</useProjectArtifact>
+ <outputDirectory>lib/jdk5</outputDirectory>
+ <scope>runtime</scope>
+ <includes>
+ <include>javax.xml.bind:jaxb-api</include>
+ <include>com.sun.xml.bind:jaxb-impl</include>
+ <include>javax.xml.stream:stax-api</include>
+ <include>javax.activation:activation</include>
+ </includes>
+ </dependencySet>
</dependencySets>
<files>
Modified: validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml
===================================================================
--- validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml 2009-07-18
10:43:49 UTC (rev 17160)
+++ validator/trunk/hibernate-validator/src/main/docbook/en-US/master.xml 2009-07-18
11:31:19 UTC (rev 17161)
@@ -25,7 +25,7 @@
-->
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY versionNumber "4.0.0.Beta1">
+<!ENTITY versionNumber "4.0.0.Beta2">
<!ENTITY copyrightYear "2009">
<!ENTITY copyrightHolder "Red Hat Middleware, LLC. & Gunnar
Morling">
]>
Modified:
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml
===================================================================
---
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml 2009-07-18
10:43:49 UTC (rev 17160)
+++
validator/trunk/hibernate-validator/src/main/docbook/en-US/modules/gettingstarted.xml 2009-07-18
11:31:19 UTC (rev 17161)
@@ -147,7 +147,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
- <version>4.0.0.Beta1</version>
+ <version>4.0.0.Beta2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
@@ -363,7 +363,7 @@
<para>That concludes our 5 minute tour through the world of the Bean
Validation RI. We will complete this documentation in our coming releases.
For now we recommend to refer to the JSR 303 specification directly for
- more examples. The 1.0.CR2 version of this specification is available
- <ulink
url="http://in.relation.to/service/File/11150">here</ulink>.</para>
+ more examples. The 1.0.CR3 version of this specification is available
+ <ulink
url="http://in.relation.to/service/File/12014">here</ulink>.</para>
</section>
</chapter>