Hibernate SVN: r19500 - in core/branches/Branch_3_5/envers: src/main/java/org/hibernate/envers/configuration/metadata and 5 other directories.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-05-13 02:45:04 -0400 (Thu, 13 May 2010)
New Revision: 19500
Removed:
core/branches/Branch_3_5/envers/src/test/java/org/hibernate/envers/test/integration/manytomany/inverseToSuperclass/
core/branches/Branch_3_5/envers/src/test/java/org/hibernate/envers/test/integration/onetomany/inverseToSuperclass/
core/branches/Branch_3_5/envers/src/test/resources/mappings/manyToMany/
core/branches/Branch_3_5/envers/src/test/resources/mappings/oneToMany/
Modified:
core/branches/Branch_3_5/envers/pom.xml
core/branches/Branch_3_5/envers/src/main/java/org/hibernate/envers/configuration/metadata/BasicMetadataGenerator.java
core/branches/Branch_3_5/envers/src/main/java/org/hibernate/envers/configuration/metadata/CollectionMetadataGenerator.java
core/branches/Branch_3_5/envers/src/test/java/org/hibernate/envers/test/entities/customtype/CompositeTestUserType.java
core/branches/Branch_3_5/envers/src/test/java/org/hibernate/envers/test/entities/customtype/ParametrizedTestUserType.java
core/branches/Branch_3_5/envers/src/test/resources/testng.xml
Log:
revert to revision 19480 (the last Branch_3_5 revision before 19482)
Modified: core/branches/Branch_3_5/envers/pom.xml
===================================================================
--- core/branches/Branch_3_5/envers/pom.xml 2010-05-13 02:10:16 UTC (rev 19499)
+++ core/branches/Branch_3_5/envers/pom.xml 2010-05-13 06:45:04 UTC (rev 19500)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.5.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/envers/src/main/java/org/hibernate/envers/configuration/metadata/BasicMetadataGenerator.java
===================================================================
--- core/branches/Branch_3_5/envers/src/main/java/org/hibernate/envers/configuration/metadata/BasicMetadataGenerator.java 2010-05-13 02:10:16 UTC (rev 19499)
+++ core/branches/Branch_3_5/envers/src/main/java/org/hibernate/envers/configuration/metadata/BasicMetadataGenerator.java 2010-05-13 06:45:04 UTC (rev 19500)
@@ -33,9 +33,10 @@
import org.hibernate.mapping.Column;
import org.hibernate.mapping.SimpleValue;
import org.hibernate.mapping.Value;
-import org.hibernate.type.BasicType;
import org.hibernate.type.CompositeCustomType;
import org.hibernate.type.CustomType;
+import org.hibernate.type.ImmutableType;
+import org.hibernate.type.MutableType;
import org.hibernate.type.Type;
/**
@@ -47,7 +48,7 @@
Value value, SimpleMapperBuilder mapper, boolean insertable, boolean key) {
Type type = value.getType();
- if ( type instanceof BasicType ) {
+ if (type instanceof ImmutableType || type instanceof MutableType) {
addSimpleValue(parent, propertyAuditingData, value, mapper, insertable, key);
} else if (type instanceof CustomType || type instanceof CompositeCustomType) {
addCustomValue(parent, propertyAuditingData, value, mapper, insertable, key);
Modified: core/branches/Branch_3_5/envers/src/main/java/org/hibernate/envers/configuration/metadata/CollectionMetadataGenerator.java
===================================================================
--- core/branches/Branch_3_5/envers/src/main/java/org/hibernate/envers/configuration/metadata/CollectionMetadataGenerator.java 2010-05-13 02:10:16 UTC (rev 19499)
+++ core/branches/Branch_3_5/envers/src/main/java/org/hibernate/envers/configuration/metadata/CollectionMetadataGenerator.java 2010-05-13 06:45:04 UTC (rev 19500)
@@ -80,7 +80,6 @@
/**
* Generates metadata for a collection-valued property.
* @author Adam Warski (adam at warski dot org)
- * @author Hern�n Chanfreau
*/
public final class CollectionMetadataGenerator {
private static final Logger log = LoggerFactory.getLogger(CollectionMetadataGenerator.class);
@@ -534,6 +533,7 @@
return middleEntityXmlId;
}
+ @SuppressWarnings({"unchecked"})
private String getMappedBy(Collection collectionValue) {
PersistentClass referencedClass = ((OneToMany) collectionValue.getElement()).getAssociatedClass();
@@ -543,31 +543,8 @@
return auditMappedBy;
}
- // searching in referenced class
- String mappedBy = this.searchMappedBy(referencedClass, collectionValue);
-
- if(mappedBy == null) {
- log.debug("Going to search the mapped by attribute for " + propertyName + " in superclasses of entity: " + referencedClass.getClassName());
-
- PersistentClass tempClass = referencedClass;
- while ((mappedBy == null) && (tempClass.getSuperclass() != null)) {
- log.debug("Searching in superclass: " + tempClass.getSuperclass().getClassName());
- mappedBy = this.searchMappedBy(tempClass.getSuperclass(), collectionValue);
- tempClass = tempClass.getSuperclass();
- }
- }
-
- if(mappedBy == null) {
- throw new MappingException("Unable to read the mapped by attribute for " + propertyName + " in "
- + referencedClass.getClassName() + "!");
- }
-
- return mappedBy;
- }
-
- @SuppressWarnings({"unchecked"})
- private String searchMappedBy(PersistentClass referencedClass, Collection collectionValue) {
Iterator<Property> assocClassProps = referencedClass.getPropertyIterator();
+
while (assocClassProps.hasNext()) {
Property property = assocClassProps.next();
@@ -575,10 +552,13 @@
collectionValue.getKey().getColumnIterator())) {
return property.getName();
}
- }
- return null;
+ }
+
+ throw new MappingException("Unable to read the mapped by attribute for " + propertyName + " in "
+ + referencingEntityName + "!");
}
+ @SuppressWarnings({"unchecked"})
private String getMappedBy(Table collectionTable, PersistentClass referencedClass) {
// If there's an @AuditMappedBy specified, returning it directly.
String auditMappedBy = propertyAuditingData.getAuditMappedBy();
@@ -586,31 +566,6 @@
return auditMappedBy;
}
- // searching in referenced class
- String mappedBy = this.searchMappedBy(referencedClass, collectionTable);
-
- // not found on referenced class, searching on superclasses
- if(mappedBy == null) {
- log.debug("Going to search the mapped by attribute for " + propertyName + " in superclases of entity: " + referencedClass.getClassName());
-
- PersistentClass tempClass = referencedClass;
- while ((mappedBy == null) && (tempClass.getSuperclass() != null)) {
- log.debug("Searching in superclass: " + tempClass.getSuperclass().getClassName());
- mappedBy = this.searchMappedBy(tempClass.getSuperclass(), collectionTable);
- tempClass = tempClass.getSuperclass();
- }
- }
-
- if(mappedBy == null) {
- throw new MappingException("Unable to read the mapped by attribute for " + propertyName + " in "
- + referencedClass.getClassName() + "!");
- }
-
- return mappedBy;
- }
-
- @SuppressWarnings({"unchecked"})
- private String searchMappedBy(PersistentClass referencedClass, Table collectionTable) {
Iterator<Property> properties = referencedClass.getPropertyIterator();
while (properties.hasNext()) {
Property property = properties.next();
@@ -621,8 +576,9 @@
return property.getName();
}
}
- }
- return null;
+ }
+
+ throw new MappingException("Unable to read the mapped by attribute for " + propertyName + " in "
+ + referencingEntityName + "!");
}
-
}
Modified: core/branches/Branch_3_5/envers/src/test/java/org/hibernate/envers/test/entities/customtype/CompositeTestUserType.java
===================================================================
--- core/branches/Branch_3_5/envers/src/test/java/org/hibernate/envers/test/entities/customtype/CompositeTestUserType.java 2010-05-13 02:10:16 UTC (rev 19499)
+++ core/branches/Branch_3_5/envers/src/test/java/org/hibernate/envers/test/entities/customtype/CompositeTestUserType.java 2010-05-13 06:45:04 UTC (rev 19500)
@@ -28,10 +28,9 @@
import java.sql.ResultSet;
import java.sql.SQLException;
+import org.hibernate.Hibernate;
import org.hibernate.HibernateException;
import org.hibernate.engine.SessionImplementor;
-import org.hibernate.type.IntegerType;
-import org.hibernate.type.StringType;
import org.hibernate.type.Type;
import org.hibernate.usertype.CompositeUserType;
@@ -45,7 +44,7 @@
}
public Type[] getPropertyTypes() {
- return new Type[] { StringType.INSTANCE, IntegerType.INSTANCE };
+ return new Type[] { Hibernate.STRING, Hibernate.INTEGER };
}
public Object getPropertyValue(final Object component, final int property) throws HibernateException {
@@ -107,8 +106,8 @@
throws HibernateException, SQLException
{
if (value == null) {
- st.setNull(index, StringType.INSTANCE.sqlType());
- st.setNull(index + 1, IntegerType.INSTANCE.sqlType());
+ st.setNull(index, Hibernate.STRING.sqlType());
+ st.setNull(index + 1, Hibernate.INTEGER.sqlType());
} else {
final Component comp = (Component) value;
st.setString(index, comp.getProp1());
Modified: core/branches/Branch_3_5/envers/src/test/java/org/hibernate/envers/test/entities/customtype/ParametrizedTestUserType.java
===================================================================
--- core/branches/Branch_3_5/envers/src/test/java/org/hibernate/envers/test/entities/customtype/ParametrizedTestUserType.java 2010-05-13 02:10:16 UTC (rev 19499)
+++ core/branches/Branch_3_5/envers/src/test/java/org/hibernate/envers/test/entities/customtype/ParametrizedTestUserType.java 2010-05-13 06:45:04 UTC (rev 19500)
@@ -32,7 +32,6 @@
import org.hibernate.Hibernate;
import org.hibernate.HibernateException;
-import org.hibernate.type.StringType;
import org.hibernate.usertype.ParameterizedType;
import org.hibernate.usertype.UserType;
@@ -55,7 +54,7 @@
}
public Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws HibernateException, SQLException {
- return StringType.INSTANCE.nullSafeGet( rs, names[0] );
+ return Hibernate.STRING.nullSafeGet(rs, names[0]);
}
public void nullSafeSet(PreparedStatement st, Object value, int index) throws HibernateException, SQLException {
@@ -67,11 +66,10 @@
if (!v.endsWith(param2)) {
v = v + param2;
}
- StringType.INSTANCE.nullSafeSet(st, v, index);
+ Hibernate.STRING.nullSafeSet(st, v, index);
+ } else {
+ Hibernate.STRING.nullSafeSet(st, value, index);
}
- else {
- StringType.INSTANCE.nullSafeSet( st, null, index );
- }
}
public int[] sqlTypes() {
Modified: core/branches/Branch_3_5/envers/src/test/resources/testng.xml
===================================================================
--- core/branches/Branch_3_5/envers/src/test/resources/testng.xml 2010-05-13 02:10:16 UTC (rev 19499)
+++ core/branches/Branch_3_5/envers/src/test/resources/testng.xml 2010-05-13 06:45:04 UTC (rev 19500)
@@ -43,7 +43,6 @@
<package name="org.hibernate.envers.test.integration.interfaces.hbm.propertiesAudited2.union" />
<package name="org.hibernate.envers.test.integration.manytomany" />
<package name="org.hibernate.envers.test.integration.manytomany.biowned" />
- <package name="org.hibernate.envers.test.integration.manytomany.inverseToSuperclass" />
<package name="org.hibernate.envers.test.integration.manytomany.sametable" />
<package name="org.hibernate.envers.test.integration.manytomany.ternary" />
<package name="org.hibernate.envers.test.integration.manytomany.unidirectional" />
@@ -54,7 +53,6 @@
<package name="org.hibernate.envers.test.integration.notinsertable.manytoone" />
<package name="org.hibernate.envers.test.integration.onetomany" />
<package name="org.hibernate.envers.test.integration.onetomany.detached" />
- <package name="org.hibernate.envers.test.integration.onetomany.inverseToSuperclass" />
<package name="org.hibernate.envers.test.integration.onetoone.bidirectional" />
<package name="org.hibernate.envers.test.integration.onetoone.bidirectional.ids" />
<package name="org.hibernate.envers.test.integration.onetoone.unidirectional" />
14 years, 8 months
Hibernate SVN: r19499 - core/branches/Branch_3_5/envers.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-05-12 22:10:16 -0400 (Wed, 12 May 2010)
New Revision: 19499
Modified:
core/branches/Branch_3_5/envers/pom.xml
Log:
changed version back to 3.6.0-SNAPSHOT to prepare for reverting revision 19482
Modified: core/branches/Branch_3_5/envers/pom.xml
===================================================================
--- core/branches/Branch_3_5/envers/pom.xml 2010-05-13 01:38:34 UTC (rev 19498)
+++ core/branches/Branch_3_5/envers/pom.xml 2010-05-13 02:10:16 UTC (rev 19499)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.3-SNAPSHOT</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
14 years, 8 months
Hibernate SVN: r19498 - core/tags.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-05-12 21:38:34 -0400 (Wed, 12 May 2010)
New Revision: 19498
Removed:
core/tags/hibernate-3.5.2-Final/
Log:
Deleting hibernate-3.5.2-Final tag to back out of changes from 19482 that break the build
14 years, 8 months
Hibernate SVN: r19497 - core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one.
by hibernate-commits@lists.jboss.org
Author: stliu
Date: 2010-05-12 21:29:54 -0400 (Wed, 12 May 2010)
New Revision: 19497
Modified:
core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/Car.java
core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/CarPart.java
core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/CarType.java
core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/Dom4jManyToOneTest.java
Log:
correct non utf-8 charactor
Modified: core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/Car.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/Car.java 2010-05-13 01:07:31 UTC (rev 19496)
+++ core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/Car.java 2010-05-13 01:29:54 UTC (rev 19497)
@@ -4,7 +4,7 @@
import java.util.Set;
/**
- * @author Paco Hern�ndez
+ * @author Paco Hernandez
*/
public class Car implements java.io.Serializable {
Modified: core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/CarPart.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/CarPart.java 2010-05-13 01:07:31 UTC (rev 19496)
+++ core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/CarPart.java 2010-05-13 01:29:54 UTC (rev 19497)
@@ -1,7 +1,7 @@
package org.hibernate.test.entitymode.dom4j.many2one;
/**
- * @author Paco Hern�ndez
+ * @author Paco Hernandez
*/
public class CarPart implements java.io.Serializable {
Modified: core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/CarType.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/CarType.java 2010-05-13 01:07:31 UTC (rev 19496)
+++ core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/CarType.java 2010-05-13 01:29:54 UTC (rev 19497)
@@ -1,7 +1,7 @@
package org.hibernate.test.entitymode.dom4j.many2one;
/**
- * @author Paco Hern�ndez
+ * @author Paco Hernandez
*/
public class CarType implements java.io.Serializable {
Modified: core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/Dom4jManyToOneTest.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/Dom4jManyToOneTest.java 2010-05-13 01:07:31 UTC (rev 19496)
+++ core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/entitymode/dom4j/many2one/Dom4jManyToOneTest.java 2010-05-13 01:29:54 UTC (rev 19497)
@@ -14,7 +14,7 @@
import org.hibernate.junit.functional.FunctionalTestClassTestSuite;
/**
- * @author Paco Hern�ndez
+ * @author Paco Hernandez
*/
public class Dom4jManyToOneTest extends FunctionalTestCase {
14 years, 8 months
Hibernate SVN: r19496 - core/tags/hibernate-3.5.2-Final/envers.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-05-12 21:07:31 -0400 (Wed, 12 May 2010)
New Revision: 19496
Modified:
core/tags/hibernate-3.5.2-Final/envers/pom.xml
Log:
correct version (3.5.2-Final)
Modified: core/tags/hibernate-3.5.2-Final/envers/pom.xml
===================================================================
--- core/tags/hibernate-3.5.2-Final/envers/pom.xml 2010-05-13 00:57:48 UTC (rev 19495)
+++ core/tags/hibernate-3.5.2-Final/envers/pom.xml 2010-05-13 01:07:31 UTC (rev 19496)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
14 years, 8 months
Hibernate SVN: r19495 - core/branches/Branch_3_5/envers.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-05-12 20:57:48 -0400 (Wed, 12 May 2010)
New Revision: 19495
Modified:
core/branches/Branch_3_5/envers/pom.xml
Log:
correct version (3.5.3-SNAPSHOT)
Modified: core/branches/Branch_3_5/envers/pom.xml
===================================================================
--- core/branches/Branch_3_5/envers/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
+++ core/branches/Branch_3_5/envers/pom.xml 2010-05-13 00:57:48 UTC (rev 19495)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
14 years, 8 months
Hibernate SVN: r19494 - in core/branches/Branch_3_5: annotations and 30 other directories.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-05-12 17:38:33 -0400 (Wed, 12 May 2010)
New Revision: 19494
Modified:
core/branches/Branch_3_5/annotations/pom.xml
core/branches/Branch_3_5/cache-ehcache/pom.xml
core/branches/Branch_3_5/cache-infinispan/pom.xml
core/branches/Branch_3_5/cache-jbosscache/pom.xml
core/branches/Branch_3_5/cache-oscache/pom.xml
core/branches/Branch_3_5/cache-swarmcache/pom.xml
core/branches/Branch_3_5/connection-c3p0/pom.xml
core/branches/Branch_3_5/connection-proxool/pom.xml
core/branches/Branch_3_5/core/pom.xml
core/branches/Branch_3_5/distribution/pom.xml
core/branches/Branch_3_5/documentation/envers/pom.xml
core/branches/Branch_3_5/documentation/jbosscache2/pom.xml
core/branches/Branch_3_5/documentation/manual/old/es-ES/pom.xml
core/branches/Branch_3_5/documentation/manual/old/fr-FR/pom.xml
core/branches/Branch_3_5/documentation/manual/old/ja-JP/pom.xml
core/branches/Branch_3_5/documentation/manual/old/ko-KR/pom.xml
core/branches/Branch_3_5/documentation/manual/old/pt-BR/pom.xml
core/branches/Branch_3_5/documentation/manual/old/zh-CN/pom.xml
core/branches/Branch_3_5/documentation/manual/pom.xml
core/branches/Branch_3_5/documentation/pom.xml
core/branches/Branch_3_5/entitymanager/pom.xml
core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml
core/branches/Branch_3_5/jdbc3-testing/pom.xml
core/branches/Branch_3_5/jdbc4-testing/pom.xml
core/branches/Branch_3_5/jmx/pom.xml
core/branches/Branch_3_5/parent/pom.xml
core/branches/Branch_3_5/pom.xml
core/branches/Branch_3_5/testing/pom.xml
core/branches/Branch_3_5/testsuite/pom.xml
core/branches/Branch_3_5/tutorials/eg/pom.xml
core/branches/Branch_3_5/tutorials/pom.xml
core/branches/Branch_3_5/tutorials/web/pom.xml
Log:
Change version from 3.5.2-Final to 3.5.3-SNAPSHOT
Modified: core/branches/Branch_3_5/annotations/pom.xml
===================================================================
--- core/branches/Branch_3_5/annotations/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/annotations/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-ehcache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-ehcache/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/cache-ehcache/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-infinispan/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-infinispan/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/cache-infinispan/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-jbosscache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-jbosscache/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/cache-jbosscache/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-oscache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-oscache/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/cache-oscache/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-swarmcache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-swarmcache/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/cache-swarmcache/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/connection-c3p0/pom.xml
===================================================================
--- core/branches/Branch_3_5/connection-c3p0/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/connection-c3p0/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/connection-proxool/pom.xml
===================================================================
--- core/branches/Branch_3_5/connection-proxool/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/connection-proxool/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/core/pom.xml
===================================================================
--- core/branches/Branch_3_5/core/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/core/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/distribution/pom.xml
===================================================================
--- core/branches/Branch_3_5/distribution/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/distribution/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/envers/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/envers/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/documentation/envers/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/jbosscache2/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/jbosscache2/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/documentation/jbosscache2/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/manual/old/es-ES/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/es-ES/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/documentation/manual/old/es-ES/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/old/fr-FR/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/fr-FR/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/documentation/manual/old/fr-FR/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/old/ja-JP/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/ja-JP/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/documentation/manual/old/ja-JP/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/old/ko-KR/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/ko-KR/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/documentation/manual/old/ko-KR/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/old/pt-BR/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/pt-BR/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/documentation/manual/old/pt-BR/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/old/zh-CN/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/zh-CN/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/documentation/manual/old/zh-CN/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/documentation/manual/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/documentation/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/entitymanager/pom.xml
===================================================================
--- core/branches/Branch_3_5/entitymanager/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/entitymanager/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml
===================================================================
--- core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -27,7 +27,7 @@
<parent>
<artifactId>hibernate-parent</artifactId>
<groupId>org.hibernate</groupId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jdbc3-testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/jdbc3-testing/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/jdbc3-testing/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jdbc4-testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/jdbc4-testing/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/jdbc4-testing/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jmx/pom.xml
===================================================================
--- core/branches/Branch_3_5/jmx/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/jmx/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/parent/pom.xml
===================================================================
--- core/branches/Branch_3_5/parent/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/parent/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -29,7 +29,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
Modified: core/branches/Branch_3_5/pom.xml
===================================================================
--- core/branches/Branch_3_5/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/testing/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/testing/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/testsuite/pom.xml
===================================================================
--- core/branches/Branch_3_5/testsuite/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/testsuite/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/eg/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/eg/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/tutorials/eg/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/tutorials/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/web/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/web/pom.xml 2010-05-12 21:34:40 UTC (rev 19493)
+++ core/branches/Branch_3_5/tutorials/web/pom.xml 2010-05-12 21:38:33 UTC (rev 19494)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.5.2-Final</version>
+ <version>3.5.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
14 years, 8 months
Hibernate SVN: r19493 - core/tags.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-05-12 17:34:40 -0400 (Wed, 12 May 2010)
New Revision: 19493
Added:
core/tags/hibernate-3.5.2-Final/
Log:
Create tag for 3.5.2-Final
Copied: core/tags/hibernate-3.5.2-Final (from rev 19492, core/branches/Branch_3_5)
14 years, 8 months
Hibernate SVN: r19492 - in core/branches/Branch_3_5: annotations and 30 other directories.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-05-12 17:29:23 -0400 (Wed, 12 May 2010)
New Revision: 19492
Modified:
core/branches/Branch_3_5/annotations/pom.xml
core/branches/Branch_3_5/cache-ehcache/pom.xml
core/branches/Branch_3_5/cache-infinispan/pom.xml
core/branches/Branch_3_5/cache-jbosscache/pom.xml
core/branches/Branch_3_5/cache-oscache/pom.xml
core/branches/Branch_3_5/cache-swarmcache/pom.xml
core/branches/Branch_3_5/connection-c3p0/pom.xml
core/branches/Branch_3_5/connection-proxool/pom.xml
core/branches/Branch_3_5/core/pom.xml
core/branches/Branch_3_5/distribution/pom.xml
core/branches/Branch_3_5/documentation/envers/pom.xml
core/branches/Branch_3_5/documentation/jbosscache2/pom.xml
core/branches/Branch_3_5/documentation/manual/old/es-ES/pom.xml
core/branches/Branch_3_5/documentation/manual/old/fr-FR/pom.xml
core/branches/Branch_3_5/documentation/manual/old/ja-JP/pom.xml
core/branches/Branch_3_5/documentation/manual/old/ko-KR/pom.xml
core/branches/Branch_3_5/documentation/manual/old/pt-BR/pom.xml
core/branches/Branch_3_5/documentation/manual/old/zh-CN/pom.xml
core/branches/Branch_3_5/documentation/manual/pom.xml
core/branches/Branch_3_5/documentation/pom.xml
core/branches/Branch_3_5/entitymanager/pom.xml
core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml
core/branches/Branch_3_5/jdbc3-testing/pom.xml
core/branches/Branch_3_5/jdbc4-testing/pom.xml
core/branches/Branch_3_5/jmx/pom.xml
core/branches/Branch_3_5/parent/pom.xml
core/branches/Branch_3_5/pom.xml
core/branches/Branch_3_5/testing/pom.xml
core/branches/Branch_3_5/testsuite/pom.xml
core/branches/Branch_3_5/tutorials/eg/pom.xml
core/branches/Branch_3_5/tutorials/pom.xml
core/branches/Branch_3_5/tutorials/web/pom.xml
Log:
Change 3.5.2-SNAPSHOT to 3.5.2-Final to prepare for 3.5.2
Modified: core/branches/Branch_3_5/annotations/pom.xml
===================================================================
--- core/branches/Branch_3_5/annotations/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/annotations/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-ehcache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-ehcache/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/cache-ehcache/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-infinispan/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-infinispan/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/cache-infinispan/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-jbosscache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-jbosscache/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/cache-jbosscache/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-oscache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-oscache/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/cache-oscache/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-swarmcache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-swarmcache/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/cache-swarmcache/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/connection-c3p0/pom.xml
===================================================================
--- core/branches/Branch_3_5/connection-c3p0/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/connection-c3p0/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/connection-proxool/pom.xml
===================================================================
--- core/branches/Branch_3_5/connection-proxool/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/connection-proxool/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/core/pom.xml
===================================================================
--- core/branches/Branch_3_5/core/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/core/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/distribution/pom.xml
===================================================================
--- core/branches/Branch_3_5/distribution/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/distribution/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/envers/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/envers/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/documentation/envers/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/jbosscache2/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/jbosscache2/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/documentation/jbosscache2/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/manual/old/es-ES/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/es-ES/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/documentation/manual/old/es-ES/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/old/fr-FR/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/fr-FR/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/documentation/manual/old/fr-FR/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/old/ja-JP/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/ja-JP/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/documentation/manual/old/ja-JP/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/old/ko-KR/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/ko-KR/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/documentation/manual/old/ko-KR/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/old/pt-BR/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/pt-BR/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/documentation/manual/old/pt-BR/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/old/zh-CN/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/old/zh-CN/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/documentation/manual/old/zh-CN/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,12 +6,12 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name>
Modified: core/branches/Branch_3_5/documentation/manual/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/documentation/manual/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/documentation/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/entitymanager/pom.xml
===================================================================
--- core/branches/Branch_3_5/entitymanager/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/entitymanager/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml
===================================================================
--- core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -27,7 +27,7 @@
<parent>
<artifactId>hibernate-parent</artifactId>
<groupId>org.hibernate</groupId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jdbc3-testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/jdbc3-testing/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/jdbc3-testing/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jdbc4-testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/jdbc4-testing/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/jdbc4-testing/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jmx/pom.xml
===================================================================
--- core/branches/Branch_3_5/jmx/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/jmx/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/parent/pom.xml
===================================================================
--- core/branches/Branch_3_5/parent/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/parent/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -29,7 +29,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
Modified: core/branches/Branch_3_5/pom.xml
===================================================================
--- core/branches/Branch_3_5/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/testing/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/testing/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/testsuite/pom.xml
===================================================================
--- core/branches/Branch_3_5/testsuite/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/testsuite/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/eg/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/eg/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/tutorials/eg/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/tutorials/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/web/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/web/pom.xml 2010-05-12 21:12:13 UTC (rev 19491)
+++ core/branches/Branch_3_5/tutorials/web/pom.xml 2010-05-12 21:29:23 UTC (rev 19492)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.5.2-SNAPSHOT</version>
+ <version>3.5.2-Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
14 years, 8 months