[seam-commits] Seam SVN: r14134 - in branches/enterprise/JBPAPP_4_3_FP01: build and 1 other directories.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Mon Jul 25 04:51:53 EDT 2011
Author: manaRH
Date: 2011-07-25 04:51:53 -0400 (Mon, 25 Jul 2011)
New Revision: 14134
Modified:
branches/enterprise/JBPAPP_4_3_FP01/
branches/enterprise/JBPAPP_4_3_FP01/build/core.pom.xml
branches/enterprise/JBPAPP_4_3_FP01/build/root.pom.xml
branches/enterprise/JBPAPP_4_3_FP01/src/main/org/jboss/seam/persistence/HibernateSessionProxy.java
Log:
aligned and fixed referenced dependencies for EAP 4.3.10
Property changes on: branches/enterprise/JBPAPP_4_3_FP01
___________________________________________________________________
Modified: svn:ignore
- *.ipr
*.iws
*.iml
jboss-seam.jar
jboss-seam-ui.jar
jboss-seam-debug.jar
jboss-seam-gen.jar
jboss-seam-pdf.jar
jboss-seam-mail.jar
jboss-seam-remoting.jar
jboss-seam-ioc.jar
jboss-seam-trinidad.jar
test-output
test-report
testng-failures.xml
report
output
classes
lib
.classpath
build.properties
coverage.ec
dvdindexes
coverage-output
blogindexes
+ *.ipr
*.iws
*.iml
jboss-seam.jar
jboss-seam-ui.jar
jboss-seam-debug.jar
jboss-seam-gen.jar
jboss-seam-pdf.jar
jboss-seam-mail.jar
jboss-seam-remoting.jar
jboss-seam-ioc.jar
jboss-seam-trinidad.jar
test-output
test-report
testng-failures.xml
report
output
classes
lib
.classpath
.project
.settings
build.properties
coverage.ec
dvdindexes
coverage-output
blogindexes
Modified: branches/enterprise/JBPAPP_4_3_FP01/build/core.pom.xml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/build/core.pom.xml 2011-07-22 14:33:33 UTC (rev 14133)
+++ branches/enterprise/JBPAPP_4_3_FP01/build/core.pom.xml 2011-07-25 08:51:53 UTC (rev 14134)
@@ -32,6 +32,11 @@
<artifactId>hibernate-validator</artifactId>
<optional>true</optional>
</dependency>
+
+ <dependency>
+ <groupId>hibernate-commons-annotations</groupId>
+ <artifactId>hibernate-commons-annotations</artifactId>
+ </dependency>
<dependency>
<groupId>hibernate-search</groupId>
@@ -39,6 +44,13 @@
<optional>true</optional>
</dependency>
+ <dependency>
+ <groupId>org.apache.lucene</groupId>
+ <artifactId>lucene-core</artifactId>
+ <version>2.3.2</version>
+ <optional>true</optional>
+ </dependency>
+
<!-- Maven's "nearest" dependency resolution doesn't take into account parent dependency management! -->
<dependency>
<groupId>commons-logging</groupId>
Modified: branches/enterprise/JBPAPP_4_3_FP01/build/root.pom.xml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/build/root.pom.xml 2011-07-22 14:33:33 UTC (rev 14133)
+++ branches/enterprise/JBPAPP_4_3_FP01/build/root.pom.xml 2011-07-25 08:51:53 UTC (rev 14134)
@@ -262,7 +262,7 @@
<dependency>
<groupId>hibernate</groupId>
<artifactId>hibernate3</artifactId>
- <version>3.2.4.SP1_CP10-brew</version>
+ <version>3.2.4.SP1_CP12</version>
<exclusions>
<exclusion>
<groupId>commons-collections</groupId>
@@ -289,11 +289,18 @@
<version>1.5.3</version>
<scope>runtime</scope>
</dependency>
+
+ <dependency>
+ <groupId>hibernate-commons-annotations</groupId>
+ <artifactId>hibernate-commons-annotations</artifactId>
+ <version>3.0.0.GA-brew</version>
+ <optional>true</optional>
+ </dependency>
<dependency>
<groupId>hibernate-annotations</groupId>
<artifactId>hibernate-annotations</artifactId>
- <version>3.3.1.GA_CP03-brew</version>
+ <version>3.3.1.GA_CP05</version>
<exclusions>
<exclusion>
<groupId>junit</groupId>
@@ -341,7 +348,7 @@
<dependency>
<groupId>hibernate-search</groupId>
<artifactId>hibernate-search</artifactId>
- <version>3.0.1.GA_CP01</version>
+ <version>3.0.1.GA_CP02</version>
<exclusions>
<exclusion>
<groupId>hibernate</groupId>
Modified: branches/enterprise/JBPAPP_4_3_FP01/src/main/org/jboss/seam/persistence/HibernateSessionProxy.java
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/src/main/org/jboss/seam/persistence/HibernateSessionProxy.java 2011-07-22 14:33:33 UTC (rev 14133)
+++ branches/enterprise/JBPAPP_4_3_FP01/src/main/org/jboss/seam/persistence/HibernateSessionProxy.java 2011-07-25 08:51:53 UTC (rev 14134)
@@ -666,4 +666,13 @@
public void delete(String s, Object o, boolean b, Set set) {
getDelegateEventSource().delete( s, o, b, set );
}
+
+ public void registerInsertedKey(EntityPersister arg0, Serializable arg1) {
+ getDelegateSessionImplementor().registerInsertedKey(arg0, arg1);
+ }
+
+ public boolean wasInsertedDuringTransaction(EntityPersister arg0, Serializable arg1) {
+ return getDelegateSessionImplementor().wasInsertedDuringTransaction(arg0, arg1);
+ }
+
}
More information about the seam-commits
mailing list