Hibernate SVN: r20305 - core/branches/Branch_3_3_2_GA_CP/parent.
by hibernate-commits@lists.jboss.org
Author: stliu
Date: 2010-09-01 23:08:59 -0400 (Wed, 01 Sep 2010)
New Revision: 20305
Modified:
core/branches/Branch_3_3_2_GA_CP/parent/pom.xml
Log:
JBPAPP-4999 update db profiles
Modified: core/branches/Branch_3_3_2_GA_CP/parent/pom.xml
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/parent/pom.xml 2010-09-01 20:05:34 UTC (rev 20304)
+++ core/branches/Branch_3_3_2_GA_CP/parent/pom.xml 2010-09-02 03:08:59 UTC (rev 20305)
@@ -483,7 +483,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
- <version>5.1.12</version>
+ <version>5.1.13</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -504,9 +504,8 @@
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
- <version>8.2-510</version>
+ <version>8.4-701.jdbc4</version>
<scope>test</scope>
- <classifier>jdbc4</classifier>
</dependency>
</dependencies>
<properties>
@@ -518,7 +517,25 @@
<jdbc.isolation/>
</properties>
</profile>
-
+ <profile>
+ <id>postgresql82-jdbc3</id>
+ <dependencies>
+ <dependency>
+ <groupId>postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ <version>8.4-701.jdbc3</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <properties>
+ <db.dialect>org.hibernate.dialect.PostgreSQLDialect</db.dialect>
+ <jdbc.driver>org.postgresql.Driver</jdbc.driver>
+ <jdbc.url>jdbc:postgresql://vmg01.mw.lab.eng.bos.redhat.com:5432:hibbr330</jdbc.url>
+ <jdbc.user>hibbr330</jdbc.user>
+ <jdbc.pass>hibbr330</jdbc.pass>
+ <jdbc.isolation/>
+ </properties>
+ </profile>
<!-- The PostgreSQL 8.3.7 test envionment -->
<profile>
<id>postgresql83</id>
@@ -526,9 +543,8 @@
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
- <version>8.3-605</version>
+ <version>8.4-701.jdbc4</version>
<scope>test</scope>
- <classifier>jdbc4</classifier>
</dependency>
</dependencies>
<properties>
@@ -540,6 +556,25 @@
<jdbc.isolation/>
</properties>
</profile>
+ <profile>
+ <id>postgresql83-jdbc3</id>
+ <dependencies>
+ <dependency>
+ <groupId>postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ <version>8.4-701.jdbc3</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <properties>
+ <db.dialect>org.hibernate.dialect.PostgreSQLDialect</db.dialect>
+ <jdbc.driver>org.postgresql.Driver</jdbc.driver>
+ <jdbc.url>jdbc:postgresql://vmg03.mw.lab.eng.bos.redhat.com:5432:hibbr330</jdbc.url>
+ <jdbc.user>hibbr330</jdbc.user>
+ <jdbc.pass>hibbr330</jdbc.pass>
+ <jdbc.isolation/>
+ </properties>
+ </profile>
<!--
###################################################################
@@ -554,7 +589,7 @@
<dependency>
<groupId>com.ibm</groupId>
<artifactId>db2jcc4</artifactId>
- <version>3.58.82</version>
+ <version>4.9.78</version>
</dependency>
<dependency>
<groupId>com.ibm</groupId>
@@ -572,47 +607,50 @@
<jdbc.isolation />
</properties>
</profile>
-
- <!-- The DB2 9.x test envionment (using 9x drivers)-->
<profile>
- <id>db2-91</id>
+ <id>db2-97-jdbc3</id>
<dependencies>
<dependency>
<groupId>com.ibm</groupId>
<artifactId>db2jcc</artifactId>
- <version>3.1.57</version>
+ <version>3.59.81</version>
</dependency>
<dependency>
<groupId>com.ibm</groupId>
<artifactId>db2jcc_license_cu</artifactId>
- <version>3.1.57</version>
+ <version>3.57.86</version>
</dependency>
</dependencies>
<properties>
<db.dialect>org.hibernate.dialect.DB2Dialect</db.dialect>
<jdbc.driver>com.ibm.db2.jcc.DB2Driver</jdbc.driver>
- <jdbc.url>jdbc:db2://dev67.qa.atl.jboss.com:50000/jbossqa</jdbc.url>
+ <jdbc.url>jdbc:db2://vmg06.mw.lab.eng.bos.redhat.com:50000/jbossqa
+ </jdbc.url>
<jdbc.user>hibbr330</jdbc.user>
<jdbc.pass>hibbr330</jdbc.pass>
<jdbc.isolation />
</properties>
</profile>
- <!-- The Oracle9i test envionment -->
+ <!-- The DB2 9.x test envionment (using 9x drivers)-->
<profile>
- <id>oracle9i</id>
+ <id>db2-91</id>
<dependencies>
<dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc14</artifactId>
- <!-- use the 10g drivers which are surprisingly largely bug free -->
- <version>10.0.2.0</version>
+ <groupId>com.ibm</groupId>
+ <artifactId>db2jcc</artifactId>
+ <version>3.8.70</version>
</dependency>
+ <dependency>
+ <groupId>com.ibm</groupId>
+ <artifactId>db2jcc_license_cu</artifactId>
+ <version>3.1.57</version>
+ </dependency>
</dependencies>
<properties>
- <db.dialect>org.hibernate.dialect.Oracle9iDialect</db.dialect>
- <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver>
- <jdbc.url>jdbc:oracle:thin:@dev20.qa.atl.jboss.com:1521:qa</jdbc.url>
+ <db.dialect>org.hibernate.dialect.DB2Dialect</db.dialect>
+ <jdbc.driver>com.ibm.db2.jcc.DB2Driver</jdbc.driver>
+ <jdbc.url>jdbc:db2://dev67.qa.atl.jboss.com:50000/jbossqa</jdbc.url>
<jdbc.user>hibbr330</jdbc.user>
<jdbc.pass>hibbr330</jdbc.pass>
<jdbc.isolation />
@@ -640,25 +678,6 @@
</properties>
</profile>
<!-- The Oracle11g test envionment -->
- <!-- <profile>
- <id>oracle11g</id>
- <dependencies>
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc6</artifactId>
- <version>11.2.0.1.0</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <properties>
- <db.dialect>org.hibernate.dialect.Oracle10gDialect</db.dialect>
- <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver>
- <jdbc.url>jdbc:oracle:thin:@dev04.qa.atl2.redhat.com:1521:qaora11</jdbc.url>
- <jdbc.user>hibbr330</jdbc.user>
- <jdbc.pass>hibbr330</jdbc.pass>
- <jdbc.isolation/>
- </properties>
- </profile> -->
<profile>
<id>oracle11g</id>
<dependencies>
@@ -680,25 +699,6 @@
</profile>
<!-- The Oracle11gRAC test envionment -->
- <!-- <profile>
- <id>oracle11gRAC</id>
- <dependencies>
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc6</artifactId>
- <version>11.2.0.1.0</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <properties>
- <db.dialect>org.hibernate.dialect.Oracle10gDialect</db.dialect>
- <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver>
- <jdbc.url>jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=ON)(ADDRESS=(PROTOCOL=TCP)(HOST=vmg24-vip.mw.lab.eng.bos.redhat.com)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST=vmg25-vip.mw.lab.eng.bos.redhat.com)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=qarac.jboss)))</jdbc.url>
- <jdbc.user>hibbr330</jdbc.user>
- <jdbc.pass>hibbr330</jdbc.pass>
- <jdbc.isolation/>
- </properties>
- </profile> -->
<profile>
<id>oracle11gRAC</id>
<dependencies>
@@ -718,61 +718,59 @@
<jdbc.isolation/>
</properties>
</profile>
- <!-- The Sybase 15 test envionment -->
+
+ <!-- The Sybase 15(JDBC4) test envionment -->
<profile>
<id>sybase15</id>
<dependencies>
<dependency>
<groupId>com.sybase</groupId>
<artifactId>jconnect</artifactId>
- <version>6.0.5_26564</version>
+ <version>7.0.0_26502</version>
</dependency>
</dependencies>
<properties>
<db.dialect>org.hibernate.dialect.SybaseASE15Dialect</db.dialect>
- <jdbc.driver>com.sybase.jdbc3.jdbc.SybDriver</jdbc.driver>
+ <jdbc.driver>com.sybase.jdbc4.jdbc.SybDriver</jdbc.driver>
<jdbc.url>jdbc:sybase:Tds:dev77.qa.atl2.redhat.com:5000/hibbr330?DYNAMIC_PREPARE=true</jdbc.url>
<jdbc.user>hibbr330</jdbc.user>
<jdbc.pass>hibbr330</jdbc.pass>
<jdbc.isolation />
</properties>
</profile>
-
- <!-- The SQLServer2005 (MS JDBC) test envionment -->
<profile>
- <id>mssql2005</id>
+ <id>sybase155</id>
<dependencies>
<dependency>
- <groupId>com.microsoft.sqlserver</groupId>
- <artifactId>msjdbc</artifactId>
- <version>2.0.1008.2</version>
- <classifier>4</classifier>
+ <groupId>com.sybase</groupId>
+ <artifactId>jconnect</artifactId>
+ <version>7.0.0_26502</version>
+ <scope>test</scope>
</dependency>
</dependencies>
<properties>
- <db.dialect>org.hibernate.dialect.SQLServerDialect</db.dialect>
- <jdbc.driver>com.microsoft.sqlserver.jdbc.SQLServerDriver</jdbc.driver>
- <jdbc.url>jdbc:sqlserver://dev30.qa.atl.jboss.com:3918</jdbc.url>
+ <db.dialect>org.hibernate.dialect.SybaseASE15Dialect</db.dialect>
+ <jdbc.driver>com.sybase.jdbc4.jdbc.SybDriver</jdbc.driver>
+ <jdbc.url>jdbc:sybase:Tds:vmg09.mw.lab.eng.bos.redhat.com:5000/hibbr330?DYNAMIC_PREPARE=true</jdbc.url>
<jdbc.user>hibbr330</jdbc.user>
<jdbc.pass>hibbr330</jdbc.pass>
- <jdbc.isolation>4096</jdbc.isolation>
+ <jdbc.isolation />
</properties>
</profile>
-
- <!-- The SQLServer2005 (MS JDBC) test envionment -->
+ <!-- The SQLServer2008 (JDBC4) test envionment -->
<profile>
<id>mssql2008</id>
<dependencies>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>msjdbc</artifactId>
- <version>2.0.1008.2</version>
+ <version>3.0.1301.101</version>
<classifier>4</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
- <db.dialect>org.hibernate.dialect.SQLServerDialect</db.dialect>
+ <db.dialect>org.hibernate.dialect.SQLServer2008Dialect</db.dialect>
<jdbc.driver>com.microsoft.sqlserver.jdbc.SQLServerDriver</jdbc.driver>
<jdbc.url>jdbc:sqlserver://vmg04.mw.lab.eng.bos.redhat.com:1433</jdbc.url>
<jdbc.user>hibbr330</jdbc.user>
@@ -780,46 +778,28 @@
<jdbc.isolation>4096</jdbc.isolation>
</properties>
</profile>
- <!-- The Oracle11g test envionment for jdk1.5 -->
+
+ <!-- The SQLServer2005 (JDBC4) test envionment -->
<profile>
- <id>oracle11g-jdbc3</id>
+ <id>mssql2005</id>
<dependencies>
<dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc14</artifactId>
- <version>10.2.0.4</version>
- <scope>test</scope>
+ <groupId>com.microsoft.sqlserver</groupId>
+ <artifactId>msjdbc</artifactId>
+ <version>3.0.1301.101</version>
+ <classifier>4</classifier>
</dependency>
</dependencies>
<properties>
- <db.dialect>org.hibernate.dialect.Oracle10gDialect</db.dialect>
- <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver>
- <jdbc.url>jdbc:oracle:thin:@dev04.qa.atl2.redhat.com:1521:qaora11</jdbc.url>
+ <db.dialect>org.hibernate.dialect.SQLServerDialect</db.dialect>
+ <jdbc.driver>com.microsoft.sqlserver.jdbc.SQLServerDriver</jdbc.driver>
+ <jdbc.url>jdbc:sqlserver://dev30.qa.atl.jboss.com:3918</jdbc.url>
<jdbc.user>hibbr330</jdbc.user>
<jdbc.pass>hibbr330</jdbc.pass>
- <jdbc.isolation/>
+ <jdbc.isolation>4096</jdbc.isolation>
</properties>
</profile>
- <!-- The Oracle11gRAC test envionment for jdk1.5-->
- <profile>
- <id>oracle11gRAC-jdbc3</id>
- <dependencies>
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc14</artifactId>
- <version>10.2.0.4</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <properties>
- <db.dialect>org.hibernate.dialect.Oracle10gDialect</db.dialect>
- <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver>
- <jdbc.url>jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=ON)(ADDRESS=(PROTOCOL=TCP)(HOST=vmg24-vip.mw.lab.eng.bos.redhat.com)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST=vmg25-vip.mw.lab.eng.bos.redhat.com)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=qarac.jboss)))</jdbc.url>
- <jdbc.user>hibbr330</jdbc.user>
- <jdbc.pass>hibbr330</jdbc.pass>
- <jdbc.isolation/>
- </properties>
- </profile>
+
<!-- The SQLServer2005 (MS JDBC) test envionment for jdk1.5 -->
<profile>
<id>mssql2005-jdbc3</id>
@@ -827,7 +807,7 @@
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>msjdbc</artifactId>
- <version>1.1</version>
+ <version>2.0.1008.2</version>
</dependency>
</dependencies>
<properties>
14 years, 3 months
Hibernate SVN: r20304 - core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/legacy.
by hibernate-commits@lists.jboss.org
Author: stliu
Date: 2010-09-01 16:05:34 -0400 (Wed, 01 Sep 2010)
New Revision: 20304
Modified:
core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/legacy/FooBarTest.java
core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/legacy/ParentChildTest.java
Log:
JBPAPP-3911 Oracle 11g R2 RAC - LockMode.UPGRADE causes "No more data to read from socket"
Modified: core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/legacy/FooBarTest.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/legacy/FooBarTest.java 2010-09-01 18:58:32 UTC (rev 20303)
+++ core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/legacy/FooBarTest.java 2010-09-01 20:05:34 UTC (rev 20304)
@@ -1264,7 +1264,10 @@
}
public void testQueryLockMode() throws Exception {
-
+ if(getDialect() instanceof Oracle8iDialect){
+ reportSkip("JBPAPP-3911", "please refer to https://jira.jboss.org/browse/JBPAPP-3911 for more details");
+ return;
+ }
Session s = openSession();
Transaction tx = s.beginTransaction();
Bar bar = new Bar();
Modified: core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/legacy/ParentChildTest.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/legacy/ParentChildTest.java 2010-09-01 18:58:32 UTC (rev 20303)
+++ core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/legacy/ParentChildTest.java 2010-09-01 20:05:34 UTC (rev 20304)
@@ -27,6 +27,8 @@
import org.hibernate.dialect.DB2Dialect;
import org.hibernate.dialect.HSQLDialect;
import org.hibernate.dialect.MySQLDialect;
+import org.hibernate.dialect.Oracle8iDialect;
+import org.hibernate.dialect.OracleDialect;
import org.hibernate.engine.EntityEntry;
import org.hibernate.impl.SessionImpl;
import org.hibernate.junit.functional.FunctionalTestClassTestSuite;
@@ -204,6 +206,10 @@
}
public void testComplexCriteria() throws Exception {
+ if(getDialect() instanceof Oracle8iDialect){
+ reportSkip("JBPAPP-3911", "please refer to https://jira.jboss.org/browse/JBPAPP-3911 for more details");
+ return;
+ }
Session s = openSession();
Transaction t = s.beginTransaction();
Baz baz = new Baz();
14 years, 3 months
Hibernate SVN: r20303 - core/trunk/core/src/main/java/org/hibernate/type.
by hibernate-commits@lists.jboss.org
Author: stliu
Date: 2010-09-01 14:58:32 -0400 (Wed, 01 Sep 2010)
New Revision: 20303
Modified:
core/trunk/core/src/main/java/org/hibernate/type/UUIDCharType.java
Log:
HHH-5484 org.hibernate.type.UUIDCharType incorrectly mapped to char and causes test fail due to the padding space
Modified: core/trunk/core/src/main/java/org/hibernate/type/UUIDCharType.java
===================================================================
--- core/trunk/core/src/main/java/org/hibernate/type/UUIDCharType.java 2010-09-01 17:03:05 UTC (rev 20302)
+++ core/trunk/core/src/main/java/org/hibernate/type/UUIDCharType.java 2010-09-01 18:58:32 UTC (rev 20303)
@@ -27,7 +27,7 @@
import org.hibernate.dialect.Dialect;
import org.hibernate.type.descriptor.java.UUIDTypeDescriptor;
-import org.hibernate.type.descriptor.sql.CharTypeDescriptor;
+import org.hibernate.type.descriptor.sql.VarcharTypeDescriptor;
/**
* A type mapping {@link java.sql.Types#CHAR} (or {@link java.sql.Types#VARCHAR}) and {@link java.util.UUID}
@@ -38,7 +38,7 @@
public static final UUIDCharType INSTANCE = new UUIDCharType();
public UUIDCharType() {
- super( CharTypeDescriptor.INSTANCE, UUIDTypeDescriptor.INSTANCE );
+ super( VarcharTypeDescriptor.INSTANCE, UUIDTypeDescriptor.INSTANCE );
}
public String getName() {
14 years, 3 months
Hibernate SVN: r20302 - in core/trunk: cache-ehcache and 28 other directories.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2010-09-01 13:03:05 -0400 (Wed, 01 Sep 2010)
New Revision: 20302
Modified:
core/trunk/cache-ehcache/pom.xml
core/trunk/cache-infinispan/pom.xml
core/trunk/cache-jbosscache/pom.xml
core/trunk/cache-oscache/pom.xml
core/trunk/cache-swarmcache/pom.xml
core/trunk/connection-c3p0/pom.xml
core/trunk/connection-proxool/pom.xml
core/trunk/core/pom.xml
core/trunk/distribution/pom.xml
core/trunk/documentation/devguide/pom.xml
core/trunk/documentation/envers/pom.xml
core/trunk/documentation/jbosscache2/pom.xml
core/trunk/documentation/manual/pom.xml
core/trunk/documentation/pom.xml
core/trunk/documentation/quickstart/pom.xml
core/trunk/documentation/quickstart/tutorials/annotations/pom.xml
core/trunk/documentation/quickstart/tutorials/basic/pom.xml
core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml
core/trunk/documentation/quickstart/tutorials/pom.xml
core/trunk/entitymanager/pom.xml
core/trunk/envers/pom.xml
core/trunk/jdbc3-testing/pom.xml
core/trunk/jdbc4-testing/pom.xml
core/trunk/parent/pom.xml
core/trunk/pom.xml
core/trunk/testing/pom.xml
core/trunk/testsuite/pom.xml
core/trunk/tutorials/eg/pom.xml
core/trunk/tutorials/pom.xml
core/trunk/tutorials/web/pom.xml
Log:
Updating pom versions to 3.6.0-SNAPSHOT for release tagging
Modified: core/trunk/cache-ehcache/pom.xml
===================================================================
--- core/trunk/cache-ehcache/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/cache-ehcache/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-infinispan/pom.xml
===================================================================
--- core/trunk/cache-infinispan/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/cache-infinispan/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-jbosscache/pom.xml
===================================================================
--- core/trunk/cache-jbosscache/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/cache-jbosscache/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-oscache/pom.xml
===================================================================
--- core/trunk/cache-oscache/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/cache-oscache/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-swarmcache/pom.xml
===================================================================
--- core/trunk/cache-swarmcache/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/cache-swarmcache/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/connection-c3p0/pom.xml
===================================================================
--- core/trunk/connection-c3p0/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/connection-c3p0/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/connection-proxool/pom.xml
===================================================================
--- core/trunk/connection-proxool/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/connection-proxool/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/core/pom.xml
===================================================================
--- core/trunk/core/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/core/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/distribution/pom.xml
===================================================================
--- core/trunk/distribution/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/distribution/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/devguide/pom.xml
===================================================================
--- core/trunk/documentation/devguide/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/documentation/devguide/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/envers/pom.xml
===================================================================
--- core/trunk/documentation/envers/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/documentation/envers/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/jbosscache2/pom.xml
===================================================================
--- core/trunk/documentation/jbosscache2/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/documentation/jbosscache2/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/manual/pom.xml
===================================================================
--- core/trunk/documentation/manual/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/documentation/manual/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/pom.xml
===================================================================
--- core/trunk/documentation/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/documentation/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/documentation/quickstart/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/annotations/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/annotations/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/documentation/quickstart/tutorials/annotations/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/basic/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/basic/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/documentation/quickstart/tutorials/basic/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -29,7 +29,7 @@
<parent>
<artifactId>hibernate-tutorials</artifactId>
<groupId>org.hibernate.tutorials</groupId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
</parent>
<artifactId>hibernate-tutorial-entitymanager</artifactId>
Modified: core/trunk/documentation/quickstart/tutorials/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/documentation/quickstart/tutorials/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -28,7 +28,7 @@
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Hibernate Getting Started Guide Tutorials</name>
Modified: core/trunk/entitymanager/pom.xml
===================================================================
--- core/trunk/entitymanager/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/entitymanager/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/envers/pom.xml
===================================================================
--- core/trunk/envers/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/envers/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/jdbc3-testing/pom.xml
===================================================================
--- core/trunk/jdbc3-testing/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/jdbc3-testing/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/jdbc4-testing/pom.xml
===================================================================
--- core/trunk/jdbc4-testing/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/jdbc4-testing/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/parent/pom.xml
===================================================================
--- core/trunk/parent/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/parent/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -29,7 +29,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
Modified: core/trunk/pom.xml
===================================================================
--- core/trunk/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/testing/pom.xml
===================================================================
--- core/trunk/testing/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/testing/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/testsuite/pom.xml
===================================================================
--- core/trunk/testsuite/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/testsuite/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/eg/pom.xml
===================================================================
--- core/trunk/tutorials/eg/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/tutorials/eg/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/pom.xml
===================================================================
--- core/trunk/tutorials/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/tutorials/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/web/pom.xml
===================================================================
--- core/trunk/tutorials/web/pom.xml 2010-09-01 17:02:37 UTC (rev 20301)
+++ core/trunk/tutorials/web/pom.xml 2010-09-01 17:03:05 UTC (rev 20302)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0.Beta4</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
14 years, 3 months
Hibernate SVN: r20301 - core/tags.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2010-09-01 13:02:37 -0400 (Wed, 01 Sep 2010)
New Revision: 20301
Added:
core/tags/hibernate-3.6.0.Beta4/
Log:
Tagging 3.6.0.Beta4 release
Copied: core/tags/hibernate-3.6.0.Beta4 (from rev 20300, core/trunk)
14 years, 3 months
Hibernate SVN: r20300 - in core/trunk: cache-ehcache and 28 other directories.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2010-09-01 13:02:23 -0400 (Wed, 01 Sep 2010)
New Revision: 20300
Modified:
core/trunk/cache-ehcache/pom.xml
core/trunk/cache-infinispan/pom.xml
core/trunk/cache-jbosscache/pom.xml
core/trunk/cache-oscache/pom.xml
core/trunk/cache-swarmcache/pom.xml
core/trunk/connection-c3p0/pom.xml
core/trunk/connection-proxool/pom.xml
core/trunk/core/pom.xml
core/trunk/distribution/pom.xml
core/trunk/documentation/devguide/pom.xml
core/trunk/documentation/envers/pom.xml
core/trunk/documentation/jbosscache2/pom.xml
core/trunk/documentation/manual/pom.xml
core/trunk/documentation/pom.xml
core/trunk/documentation/quickstart/pom.xml
core/trunk/documentation/quickstart/tutorials/annotations/pom.xml
core/trunk/documentation/quickstart/tutorials/basic/pom.xml
core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml
core/trunk/documentation/quickstart/tutorials/pom.xml
core/trunk/entitymanager/pom.xml
core/trunk/envers/pom.xml
core/trunk/jdbc3-testing/pom.xml
core/trunk/jdbc4-testing/pom.xml
core/trunk/parent/pom.xml
core/trunk/pom.xml
core/trunk/testing/pom.xml
core/trunk/testsuite/pom.xml
core/trunk/tutorials/eg/pom.xml
core/trunk/tutorials/pom.xml
core/trunk/tutorials/web/pom.xml
Log:
Updating pom versions to 3.6.0.Beta4 for release tagging
Modified: core/trunk/cache-ehcache/pom.xml
===================================================================
--- core/trunk/cache-ehcache/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/cache-ehcache/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-infinispan/pom.xml
===================================================================
--- core/trunk/cache-infinispan/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/cache-infinispan/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-jbosscache/pom.xml
===================================================================
--- core/trunk/cache-jbosscache/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/cache-jbosscache/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-oscache/pom.xml
===================================================================
--- core/trunk/cache-oscache/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/cache-oscache/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-swarmcache/pom.xml
===================================================================
--- core/trunk/cache-swarmcache/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/cache-swarmcache/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/connection-c3p0/pom.xml
===================================================================
--- core/trunk/connection-c3p0/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/connection-c3p0/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/connection-proxool/pom.xml
===================================================================
--- core/trunk/connection-proxool/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/connection-proxool/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/core/pom.xml
===================================================================
--- core/trunk/core/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/core/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/distribution/pom.xml
===================================================================
--- core/trunk/distribution/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/distribution/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/devguide/pom.xml
===================================================================
--- core/trunk/documentation/devguide/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/documentation/devguide/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/envers/pom.xml
===================================================================
--- core/trunk/documentation/envers/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/documentation/envers/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/jbosscache2/pom.xml
===================================================================
--- core/trunk/documentation/jbosscache2/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/documentation/jbosscache2/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/manual/pom.xml
===================================================================
--- core/trunk/documentation/manual/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/documentation/manual/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/pom.xml
===================================================================
--- core/trunk/documentation/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/documentation/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/documentation/quickstart/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/annotations/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/annotations/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/documentation/quickstart/tutorials/annotations/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -22,16 +22,14 @@
~ 51 Franklin Street, Fifth Floor
~ 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">
+<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/basic/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/basic/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/documentation/quickstart/tutorials/basic/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -22,16 +22,14 @@
~ 51 Franklin Street, Fifth Floor
~ 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">
+<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -22,16 +22,14 @@
~ 51 Franklin Street, Fifth Floor
~ 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">
+<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>hibernate-tutorials</artifactId>
<groupId>org.hibernate.tutorials</groupId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
</parent>
<artifactId>hibernate-tutorial-entitymanager</artifactId>
@@ -51,4 +49,4 @@
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: core/trunk/documentation/quickstart/tutorials/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/documentation/quickstart/tutorials/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -22,15 +22,13 @@
~ 51 Franklin Street, Fifth Floor
~ 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">
+<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<packaging>pom</packaging>
<name>Hibernate Getting Started Guide Tutorials</name>
Modified: core/trunk/entitymanager/pom.xml
===================================================================
--- core/trunk/entitymanager/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/entitymanager/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/envers/pom.xml
===================================================================
--- core/trunk/envers/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/envers/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/jdbc3-testing/pom.xml
===================================================================
--- core/trunk/jdbc3-testing/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/jdbc3-testing/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/jdbc4-testing/pom.xml
===================================================================
--- core/trunk/jdbc4-testing/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/jdbc4-testing/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/parent/pom.xml
===================================================================
--- core/trunk/parent/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/parent/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -29,7 +29,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
@@ -938,7 +938,7 @@
<jdbc.url>jdbc:sybase:Tds:vmg09.mw.lab.eng.bos.redhat.com:5000/hibbrtru?DYNAMIC_PREPARE=true</jdbc.url>
<jdbc.user>hibbrtru</jdbc.user>
<jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
+ <jdbc.isolation/>
</properties>
</profile>
<!-- The SQLServer2005 (MS JDBC) test envionment -->
Modified: core/trunk/pom.xml
===================================================================
--- core/trunk/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/testing/pom.xml
===================================================================
--- core/trunk/testing/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/testing/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/testsuite/pom.xml
===================================================================
--- core/trunk/testsuite/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/testsuite/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/eg/pom.xml
===================================================================
--- core/trunk/tutorials/eg/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/tutorials/eg/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/pom.xml
===================================================================
--- core/trunk/tutorials/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/tutorials/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/web/pom.xml
===================================================================
--- core/trunk/tutorials/web/pom.xml 2010-09-01 16:59:50 UTC (rev 20299)
+++ core/trunk/tutorials/web/pom.xml 2010-09-01 17:02:23 UTC (rev 20300)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.Beta4</version>
<relativePath>../pom.xml</relativePath>
</parent>
14 years, 3 months
Hibernate SVN: r20299 - core/trunk.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2010-09-01 12:59:50 -0400 (Wed, 01 Sep 2010)
New Revision: 20299
Modified:
core/trunk/changelog.txt
Log:
prepare 3.6.0.Beta4
Modified: core/trunk/changelog.txt
===================================================================
--- core/trunk/changelog.txt 2010-09-01 15:33:30 UTC (rev 20298)
+++ core/trunk/changelog.txt 2010-09-01 16:59:50 UTC (rev 20299)
@@ -5,8 +5,52 @@
refer to the particular case on JIRA using the issue tracking number to learn
more about each case.
-Changes in version 3.6.0.Beta2 (2010.08.18)
+Changes in version 3.6.0.Beta4 (2010.09.01)
-------------------------------------------
+http://opensource.atlassian.com/projects/hibernate/browse/HHH/fixforversion/11140
+
+** Sub-task
+ * [HHH-5442] - Write native tutorial chapter
+ * [HHH-5444] - Write annotations tutorial chapter
+ * [HHH-5445] - Write a jpa/entitymanager tutorial guide
+ * [HHH-5462] - Write preface
+ * [HHH-5463] - Write a community chapter
+
+** Bug
+ * [HHH-817] - Projection aliases should not be applied to where-clause (Milosz Tylenda)
+ * [HHH-1189] - interfaces for Proxies are not regonized as interfaces
+ * [HHH-3334] - Cascade-save breaks if parent ID is assigned (delays insert) and child has identity ID (early insert) (Wallace Wadge)
+ * [HHH-5142] - Exception when initializing lazy @ManyToMany indexed collection containing not audited entities
+ * [HHH-5225] - Cannot parse order-by fragment if it contains a registered function without parentheses
+ * [HHH-5440] - Joined collection expressions not properly "rendered" in JPA Criteria queries
+ * [HHH-5511] - Infinispan Region.destroy() impl should call cache.stop()
+ * [HHH-5512] - JndiInfinispanRegionFactory shouldn't try to stop CacheManager
+ * [HHH-5517] - Switch uuid generation in SessionFactory to org.hibernate.id.UUIDGenerator instead
+ * [HHH-5519] - VersionedItem should not extend Item, otherwise query cache results are confusing
+ * [HHH-5520] - Per org.hibernate.cache.RegionFactory javadocs, implementors should be allowed to use no-arg constructor
+
+** Deprecation
+ * [HHH-5489] - Deprecate jbosscache as a second level cache provider, in favor of infinispan
+
+** Improvement
+ * [HHH-5427] - derby 10.6.1.0 native sequence support broken
+ * [HHH-5507] - Add @MapKeyType annotation
+ * [HHH-5509] - Leverage StandardBasicTypes internaly
+ * [HHH-5515] - Upgrade to Infinispan 4.1.0.CR3
+
+** Patch
+ * [HHH-5197] - Envers documentation doesn't include the correct configuration when using Hibernate directly
+ * [HHH-5453] - ByteCodeHelper.readByteCode won't load classes bigger than a constant size
+
+** Task
+ * [HHH-5502] - Upgrade to maven-jdocbook-plugin 2.3.2
+ * [HHH-5505] - enable Sybase 15.5 in the test db profile
+ * [HHH-5506] - rollback maven-jdocbook-plugin to 2.3.0
+ * [HHH-5510] - Upgrade to maven-jdocbook-plugin 2.3.3
+
+
+Changes in version 3.6.0.Beta3 (2010.08.18)
+-------------------------------------------
http://opensource.atlassian.com/projects/hibernate/browse/HHH/fixforversi...
** Sub-task
14 years, 3 months
Hibernate SVN: r20298 - core/trunk/documentation/devguide/src/main/docbook/en-US/content.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2010-09-01 11:33:30 -0400 (Wed, 01 Sep 2010)
New Revision: 20298
Modified:
core/trunk/documentation/devguide/src/main/docbook/en-US/content/database.xml
Log:
HHH-5466 - Create "Developer Guide"
Modified: core/trunk/documentation/devguide/src/main/docbook/en-US/content/database.xml
===================================================================
--- core/trunk/documentation/devguide/src/main/docbook/en-US/content/database.xml 2010-09-01 10:32:43 UTC (rev 20297)
+++ core/trunk/documentation/devguide/src/main/docbook/en-US/content/database.xml 2010-09-01 15:33:30 UTC (rev 20298)
@@ -24,7 +24,7 @@
<term><property>hibernate.connection.driver_class</property></term>
<listitem>
<para>
- Names the <classname>java.sql.Driver</classname> implementation class from your JDBC
+ Names the <interfacename>java.sql.Driver</interfacename> implementation class from your JDBC
provider.
</para>
</listitem>
@@ -58,13 +58,13 @@
<section id="hibernate-dev-database-connect-pools-hibernate">
<title>Using Hibernate's built-in connection pooling</title>
- <caution>
+ <warning>
<para>
The built-in Hibernate connection pool is not intended for production use. It lacks several
features found on any decent connection pool. However, it can be quite useful to get started
and in unit testing.
</para>
- </caution>
+ </warning>
<para>
The only additional supported setting for the built-in pooling is the
14 years, 3 months
Hibernate SVN: r20297 - annotations/branches/v3_4_0_GA_CP/src/main/java/org/hibernate/annotations.
by hibernate-commits@lists.jboss.org
Author: stliu
Date: 2010-09-01 06:32:43 -0400 (Wed, 01 Sep 2010)
New Revision: 20297
Modified:
annotations/branches/v3_4_0_GA_CP/src/main/java/org/hibernate/annotations/NotFound.java
Log:
typo in javadoc
Modified: annotations/branches/v3_4_0_GA_CP/src/main/java/org/hibernate/annotations/NotFound.java
===================================================================
--- annotations/branches/v3_4_0_GA_CP/src/main/java/org/hibernate/annotations/NotFound.java 2010-08-31 19:07:03 UTC (rev 20296)
+++ annotations/branches/v3_4_0_GA_CP/src/main/java/org/hibernate/annotations/NotFound.java 2010-09-01 10:32:43 UTC (rev 20297)
@@ -8,7 +8,7 @@
import java.lang.annotation.Target;
/**
- * Action to do when an element is not found on a association whiel beeing expected
+ * Action to do when an element is not found on a association while being expected
*
* @author Emmanuel Bernard
*/
14 years, 3 months