Hibernate SVN: r17161 - in validator/trunk/hibernate-validator: src/main/assembly and 2 other directories.
by hibernate-commits@lists.jboss.org
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>
15 years, 4 months
Hibernate SVN: r17160 - validator/trunk/hibernate-validator.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-07-18 06:43:49 -0400 (Sat, 18 Jul 2009)
New Revision: 17160
Modified:
validator/trunk/hibernate-validator/pom.xml
Log:
updated SNAPSHOT dependecy to jpa-api to a released version
Modified: validator/trunk/hibernate-validator/pom.xml
===================================================================
--- validator/trunk/hibernate-validator/pom.xml 2009-07-18 10:16:00 UTC (rev 17159)
+++ validator/trunk/hibernate-validator/pom.xml 2009-07-18 10:43:49 UTC (rev 17160)
@@ -50,7 +50,7 @@
<!-- This is a temporary dependency. Do not use this dependecy in production. -->
<groupId>org.hibernate.java-persistence</groupId>
<artifactId>jpa-api</artifactId>
- <version>2.0.Beta3-SNAPSHOT</version>
+ <version>2.0.Beta-20090718</version>
<optional>true</optional>
</dependency>
15 years, 4 months
Hibernate SVN: r17158 - jpa-api/tags.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-07-18 06:15:52 -0400 (Sat, 18 Jul 2009)
New Revision: 17158
Added:
jpa-api/tags/v2_0_Beta_20090718/
Log:
[maven-scm] copy for tag v2_0_Beta_20090718
Copied: jpa-api/tags/v2_0_Beta_20090718 (from rev 17157, jpa-api/trunk)
15 years, 4 months
Hibernate SVN: r17156 - core/trunk/annotations.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-07-18 06:04:51 -0400 (Sat, 18 Jul 2009)
New Revision: 17156
Modified:
core/trunk/annotations/pom.xml
Log:
ANN-851 added the jaxb profile in case of jdk5
Modified: core/trunk/annotations/pom.xml
===================================================================
--- core/trunk/annotations/pom.xml 2009-07-17 22:07:52 UTC (rev 17155)
+++ core/trunk/annotations/pom.xml 2009-07-18 10:04:51 UTC (rev 17156)
@@ -23,8 +23,8 @@
~ Boston, MA 02110-1301 USA
-->
<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/xsd/maven-4.0.0.xsd">
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -133,7 +133,25 @@
</build>
<profiles>
- <profile>
+ <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>
+ <profile>
<id>doc</id>
<build>
<plugins>
@@ -165,14 +183,12 @@
</format>
<format>
<formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/hibernate/html/main-single.xsl
- </stylesheetResource>
+ <stylesheetResource>classpath:/xslt/hibernate/html/main-single.xsl </stylesheetResource>
<finalName>index.html</finalName>
</format>
<format>
<formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/hibernate/html/main-chunk.xsl
- </stylesheetResource>
+ <stylesheetResource>classpath:/xslt/hibernate/html/main-chunk.xsl </stylesheetResource>
<finalName>index.html</finalName>
</format>
</formats>
@@ -202,6 +218,7 @@
<id>hsqldb</id>
<activation>
<activeByDefault>true</activeByDefault>
+ <jdk>1.5</jdk>
</activation>
<dependencies>
<dependency>
@@ -215,8 +232,8 @@
<jdbc.driver>org.hsqldb.jdbcDriver</jdbc.driver>
<jdbc.url>jdbc:hsqldb:target/test/db/hsqldb/hibernate</jdbc.url>
<jdbc.user>sa</jdbc.user>
- <jdbc.pass />
- <jdbc.isolation />
+ <jdbc.pass/>
+ <jdbc.isolation/>
</properties>
</profile>
@@ -235,8 +252,8 @@
<jdbc.driver>org.h2.Driver</jdbc.driver>
<jdbc.url>jdbc:h2:mem:target/test/db/h2/hibernate</jdbc.url>
<jdbc.user>sa</jdbc.user>
- <jdbc.pass />
- <jdbc.isolation />
+ <jdbc.pass/>
+ <jdbc.isolation/>
</properties>
</profile>
@@ -264,7 +281,7 @@
<jdbc.url>jdbc:mysql://vmg08.mw.lab.eng.bos.redhat.com/hibbrtru</jdbc.url>
<jdbc.user>hibbrtru</jdbc.user>
<jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
+ <jdbc.isolation/>
</properties>
</profile>
@@ -284,7 +301,7 @@
<jdbc.url>jdbc:postgresql://dev01.qa.atl.jboss.com:5432:hibbrtru</jdbc.url>
<jdbc.user>hibbrtru</jdbc.user>
<jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
+ <jdbc.isolation/>
</properties>
</profile>
@@ -315,7 +332,7 @@
<jdbc.url>jdbc:db2://dev32.qa.atl.jboss.com:50000/jbossqa</jdbc.url>
<jdbc.user>hibbrtru</jdbc.user>
<jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
+ <jdbc.isolation/>
</properties>
</profile>
@@ -340,7 +357,7 @@
<jdbc.url>jdbc:db2://dev67.qa.atl.jboss.com:50000/jbossqa</jdbc.url>
<jdbc.user>hibbrtru</jdbc.user>
<jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
+ <jdbc.isolation/>
</properties>
</profile>
@@ -361,7 +378,7 @@
<jdbc.url>jdbc:oracle:thin:@dev20.qa.atl.jboss.com:1521:qa</jdbc.url>
<jdbc.user>hibbrtru</jdbc.user>
<jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
+ <jdbc.isolation/>
</properties>
</profile>
@@ -382,7 +399,7 @@
<jdbc.url>jdbc:oracle:thin:@dev01.qa.atl.jboss.com:1521:qadb01</jdbc.url>
<jdbc.user>hibbrtru</jdbc.user>
<jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
+ <jdbc.isolation/>
</properties>
</profile>
@@ -402,7 +419,7 @@
<jdbc.url>jdbc:sybase:Tds:dev77.qa.atl2.redhat.com:5000/hibbrtru</jdbc.url>
<jdbc.user>hibbrtru</jdbc.user>
<jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
+ <jdbc.isolation/>
</properties>
</profile>
15 years, 4 months