Author: epbernard
Date: 2008-05-27 16:34:25 -0400 (Tue, 27 May 2008)
New Revision: 14698
Modified:
validator/trunk/build.properties.dist
validator/trunk/build.xml
validator/trunk/changelog.txt
validator/trunk/doc/reference/en/master.xml
validator/trunk/ivy.xml
validator/trunk/ivy/ivyconf.xml
validator/trunk/readme.txt
validator/trunk/src/java/org/hibernate/validator/Version.java
Log:
release validator
Modified: validator/trunk/build.properties.dist
===================================================================
--- validator/trunk/build.properties.dist 2008-05-27 20:01:00 UTC (rev 14697)
+++ validator/trunk/build.properties.dist 2008-05-27 20:34:25 UTC (rev 14698)
@@ -1,11 +1,3 @@
common.dir=.
src.dir=src
-test.dir=test
-hibernate-core.home=../hibernate-3.2
-
-#locally present jars
-jpa-api.jar=./lib/ejb3-persistence.jar
-jpa.jar=./lib/test/hibernate-entitymanager.jar
-archive-browsing.jar=./lib/test/jboss-archive-browsing.jar
-commons-annotations.jar=./lib/hibernate-commons-annotations.jar
-annotations.jar=./lib/test/hibernate-annotations.jar
\ No newline at end of file
+test.dir=test
\ No newline at end of file
Modified: validator/trunk/build.xml
===================================================================
--- validator/trunk/build.xml 2008-05-27 20:01:00 UTC (rev 14697)
+++ validator/trunk/build.xml 2008-05-27 20:34:25 UTC (rev 14698)
@@ -25,7 +25,7 @@
<!-- Name of project and version, used to create filenames -->
<property name="Name" value="Hibernate Validator"/>
<property name="name" value="hibernate-validator"/>
- <property name="version" value="3.0.0.GA"/>
+ <property name="version" value="3.1.0.CR1"/>
<property name="javadoc.packagenames"
value="org.hibernate.validator.*"/>
<property name="copy.test" value="true"/>
<property name="javac.source" value="1.5"/>
@@ -266,6 +266,11 @@
<include name="common-build.xml"/>
</fileset>
</copy>
+ <copy todir="${dist.dir}/ivy" failonerror="false">
+ <fileset dir="${ivy.jar.dir}">
+ <include name="**/*.*"/>
+ </fileset>
+ </copy>
<!-- copy dependencies -->
<copy todir="${dist.lib.dir}" failonerror="false">
@@ -288,6 +293,11 @@
<fileset file="${lib.dir}/build/*.jar"/>
</copy>
+ <!-- ivy uses the module name without hibernate- (to mimic the directory
names). Revert the situation -->
+ <move file="${dist.lib.dir}/commons-annotations.jar"
tofile="${dist.lib.dir}/hibernate-commons-annotations.jar"/>
+ <move file="${dist.lib.dir}/test/annotations.jar"
tofile="${dist.lib.dir}/test/hibernate-annotations.jar"/>
+ <move file="${dist.lib.dir}/test/entitymanager.jar"
tofile="${dist.lib.dir}/test/hibernate-entitymanager.jar"/>
+
<copy file="${basedir}/build.properties.dist"
tofile="${dist.dir}/build.properties" failonerror="false">
</copy>
<antcall target="common-build.dist"/>
Modified: validator/trunk/changelog.txt
===================================================================
--- validator/trunk/changelog.txt 2008-05-27 20:01:00 UTC (rev 14697)
+++ validator/trunk/changelog.txt 2008-05-27 20:34:25 UTC (rev 14698)
@@ -1,6 +1,26 @@
Hibernate Validator Changelog
=============================
+3.1.0.CR1 (27-05-2008)
+----------------------
+
+** Bug
+ * [HV-14] - Minor typo in regular expression in class EmailValidator
+ * [HV-48] - There is no DefaultValidatorMessage_en leading to no message loaded when
locale is explicit and the system default is not en
+
+
+** Improvement
+ * [HV-57] - Move to slf4j
+
+** New Feature
+ * [HV-54] - Add pom
+ * [HV-55] - Make build independent of Hibernate Core structure
+ * [HV-56] - Move to Hibernate Core 3.3
+
+** Patch
+ * [HV-36] - DefaultValidatorMessages_ja.properties
+
+
3.0.0.GA (19-03-2007)
---------------------
Modified: validator/trunk/doc/reference/en/master.xml
===================================================================
--- validator/trunk/doc/reference/en/master.xml 2008-05-27 20:01:00 UTC (rev 14697)
+++ validator/trunk/doc/reference/en/master.xml 2008-05-27 20:34:25 UTC (rev 14698)
@@ -10,7 +10,7 @@
<subtitle>Reference Guide</subtitle>
- <releaseinfo>3.0.0.GA</releaseinfo>
+ <releaseinfo>3.1.0.CR1</releaseinfo>
<mediaobject>
<imageobject>
Modified: validator/trunk/ivy/ivyconf.xml
===================================================================
--- validator/trunk/ivy/ivyconf.xml 2008-05-27 20:01:00 UTC (rev 14697)
+++ validator/trunk/ivy/ivyconf.xml 2008-05-27 20:34:25 UTC (rev 14698)
@@ -12,6 +12,9 @@
<ivy pattern="../[module]/target/[revision]/ivy.xml"/>
<artifact
pattern="../[module]/target/[revision]/[artifact].[ext]"/>
</filesystem>
+ <filesystem name="maven-local"
m2compatible="true">
+ <artifact
pattern="${offline.repository.jboss.org}/[organization]/hibernate-[module]/[revision]/hibernate-[artifact]-[revision].[ext]"/>
+ </filesystem>
<url name="jboss-rep-maven-regular"
m2compatible="true">
<artifact
pattern="http://repository.jboss.org/maven2/[organization]/[module]/...
</url>
Modified: validator/trunk/ivy.xml
===================================================================
--- validator/trunk/ivy.xml 2008-05-27 20:01:00 UTC (rev 14697)
+++ validator/trunk/ivy.xml 2008-05-27 20:34:25 UTC (rev 14698)
@@ -14,7 +14,7 @@
<dependencies>
<!-- compile time dependencies -->
<dependency name="ejb3-persistence" rev="1.0.2.GA"
conf="default->default"/>
- <dependency name="commons-annotations" rev="latest"
conf="default->default"/>
+ <dependency name="commons-annotations" rev="3.1.0.CR1"
conf="default->default"/>
<dependency org="org.hibernate" name="hibernate-core"
rev="3.3.0.CR1" conf="default->default"/>
<dependency org="org.slf4j" name="slf4j-api"
rev="1.4.2" conf="default->default"/>
@@ -24,13 +24,14 @@
<dependency org="dom4j" name="dom4j" rev="1.6.1"
conf="test->default"/>
<!-- test deps -->
- <dependency name="annotations" rev="latest"
conf="test->default"/>
- <dependency name="entitymanager" rev="latest"
conf="test->default"/>
+ <dependency name="annotations" rev="3.4.0.CR1"
conf="test->default"/>
+ <dependency name="entitymanager" rev="3.4.0.CR1"
conf="test->default"/>
<dependency org="cglib" name="cglib" rev="2.1_3"
conf="test->default"/>
<dependency org="asm" name="asm" rev="1.5.3"
conf="test->default"/>
<dependency org="asm" name="asm-attrs"
rev="1.5.3" conf="test->default"/>
<dependency org="org.slf4j" name="slf4j-log4j12"
rev="1.4.2" conf="test->default"/>
<dependency org="log4j" name="log4j"
rev="1.2.14" conf="test->default"/>
<dependency org="junit" name="junit" rev="3.8.1"
conf="test->default"/>
+ <dependency org="javax.transaction" name="jta"
rev="1.1" conf="test->default"/>
</dependencies>
</ivy-module>
\ No newline at end of file
Modified: validator/trunk/readme.txt
===================================================================
--- validator/trunk/readme.txt 2008-05-27 20:01:00 UTC (rev 14697)
+++ validator/trunk/readme.txt 2008-05-27 20:34:25 UTC (rev 14698)
@@ -1,6 +1,6 @@
Hibernate Validator
==================================================
-Version: 3.0.0.GA, 19.03.2007
+Version: 3.1.0.CR1, 27.05.2008
Description
-----------
Modified: validator/trunk/src/java/org/hibernate/validator/Version.java
===================================================================
--- validator/trunk/src/java/org/hibernate/validator/Version.java 2008-05-27 20:01:00 UTC
(rev 14697)
+++ validator/trunk/src/java/org/hibernate/validator/Version.java 2008-05-27 20:34:25 UTC
(rev 14698)
@@ -10,7 +10,7 @@
* @author Emmanuel Bernard
*/
public class Version {
- public static final String VERSION = "3.0.0.GA";
+ public static final String VERSION = "3.1.0.CR1";
private static Logger log = LoggerFactory.getLogger( Version.class );
static {