[hibernate-commits] Hibernate SVN: r14403 - entitymanager/trunk.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Mar 6 18:40:14 EST 2008


Author: epbernard
Date: 2008-03-06 18:40:14 -0500 (Thu, 06 Mar 2008)
New Revision: 14403

Modified:
   entitymanager/trunk/build.xml
   entitymanager/trunk/changelog.txt
   entitymanager/trunk/ivy.xml
   entitymanager/trunk/readme.txt
Log:
Release

Modified: entitymanager/trunk/build.xml
===================================================================
--- entitymanager/trunk/build.xml	2008-03-06 23:26:31 UTC (rev 14402)
+++ entitymanager/trunk/build.xml	2008-03-06 23:40:14 UTC (rev 14403)
@@ -387,6 +387,11 @@
                 <include name="common-build.xml"/>
             </fileset>
         </copy>
+        <copy todir="${dist.dir}/ivy" failonerror="false">
+            <fileset dir="${ivy.jar.dir}">
+                <include name="**/*.*"/>
+            </fileset>
+        </copy>
 
         <!-- copy dependencies -->
         <copy todir="${dist.lib.dir}" failonerror="false">
@@ -402,6 +407,9 @@
                 <include name="*.jar"/>
             </fileset>
         </copy>
+        <copy todir="${dist.lib.dir}/test" failonerror="false">
+			<fileset file="${lib.dir}/test/*.jar"/>
+        </copy>
 
         <copy file="${basedir}/build.properties.dist" tofile="${dist.dir}/build.properties" failonerror="false">
         </copy>

Modified: entitymanager/trunk/changelog.txt
===================================================================
--- entitymanager/trunk/changelog.txt	2008-03-06 23:26:31 UTC (rev 14402)
+++ entitymanager/trunk/changelog.txt	2008-03-06 23:40:14 UTC (rev 14403)
@@ -1,6 +1,18 @@
 Hibernate EntityManager Changelog
 ==================================
 
+3.3.2.CR1 (06-03-2008)
+----------------------
+
+** Bug
+    * [EJB-295] - External META-INF/orm.xml not included even when explicitly requested when an internal orm.xml is already present
+    * [EJB-330] - Calling configure(String) on Ejb3Configuration before addAnnotatedClass(..) breaks callbacks
+    * [EJB-333] - Space in path result in error during deployment in JBoss AS
+    * [EJB-334] - Space in path result in error during deployment in JBoss AS
+    * [EJB-340] - onLoad() callback from Interceptor and onLoad() from Lifecycle are never invoked in an EJB3 environment
+    * [EJB-341] - Trying to create unexisting named query set the transaction to rollback
+
+
 3.3.2.Beta2 (15-01-2008)
 ------------------------
 

Modified: entitymanager/trunk/ivy.xml
===================================================================
--- entitymanager/trunk/ivy.xml	2008-03-06 23:26:31 UTC (rev 14402)
+++ entitymanager/trunk/ivy.xml	2008-03-06 23:40:14 UTC (rev 14403)
@@ -12,8 +12,8 @@
         <artifact name="hibernate-entitymanager" conf="core"/>
     </publications>
     <dependencies>
-		<dependency name="jpa-api" rev="latest.integration" conf="core->default"/>
-        <dependency name="commons-annotations" rev="latest.integration" conf="core->core"/>
-        <dependency name="annotations" rev="latest.integration" conf="core->core"/>
+		<dependency name="jpa-api" rev="1.0.1.Beta1" conf="core->default"/>
+        <dependency name="commons-annotations" rev="3.0.0.GA" conf="core->core"/>
+        <dependency name="annotations" rev="3.3.1.CR1" conf="core->core"/>
     </dependencies>
 </ivy-module>
\ No newline at end of file

Modified: entitymanager/trunk/readme.txt
===================================================================
--- entitymanager/trunk/readme.txt	2008-03-06 23:26:31 UTC (rev 14402)
+++ entitymanager/trunk/readme.txt	2008-03-06 23:40:14 UTC (rev 14403)
@@ -1,6 +1,6 @@
 Hibernate EntityManager
 ==================================================
-Version: 3.3.2.Beta2, 15.01.2008
+Version: 3.3.2.CR1, 6.03.2008
 
 THIS RELEASE OF HIBERNATE ENTITYMANAGER REQUIRES HIBERNATE CORE 3.2.0.GA (and above)
 




More information about the hibernate-commits mailing list