[portal-commits] JBoss Portal SVN: r12997 - in branches/JBoss_Portal_AS5_Deployer/core-cms: src/resources/portal-cms-sar/conf/hibernate/cms and 1 other directory.
portal-commits at lists.jboss.org
portal-commits at lists.jboss.org
Mon Mar 9 00:58:44 EDT 2009
Author: mwringe
Date: 2009-03-09 00:58:44 -0400 (Mon, 09 Mar 2009)
New Revision: 12997
Modified:
branches/JBoss_Portal_AS5_Deployer/core-cms/build.xml
branches/JBoss_Portal_AS5_Deployer/core-cms/src/resources/portal-cms-sar/conf/hibernate/cms/hibernate.cfg.xml
Log:
Minor dependency changes for better compatiblity with AS5.
Update hibernate configuration for workflow to temporarily disable second level cache.
Modified: branches/JBoss_Portal_AS5_Deployer/core-cms/build.xml
===================================================================
--- branches/JBoss_Portal_AS5_Deployer/core-cms/build.xml 2009-03-09 04:58:42 UTC (rev 12996)
+++ branches/JBoss_Portal_AS5_Deployer/core-cms/build.xml 2009-03-09 04:58:44 UTC (rev 12997)
@@ -266,7 +266,8 @@
<!-- miscellaneous thirdparty dep -->
<fileset dir="${apache.lucene.lib}" includes="lucene.jar"/>
- <fileset dir="${apache.ant.lib}" includes="ant.jar"/>
+
+ <fileset dir="${apache.ant.lib}"/>
<fileset dir="${slf4j.slf4j.lib}"/>
</copy>
Modified: branches/JBoss_Portal_AS5_Deployer/core-cms/src/resources/portal-cms-sar/conf/hibernate/cms/hibernate.cfg.xml
===================================================================
--- branches/JBoss_Portal_AS5_Deployer/core-cms/src/resources/portal-cms-sar/conf/hibernate/cms/hibernate.cfg.xml 2009-03-09 04:58:42 UTC (rev 12996)
+++ branches/JBoss_Portal_AS5_Deployer/core-cms/src/resources/portal-cms-sar/conf/hibernate/cms/hibernate.cfg.xml 2009-03-09 04:58:44 UTC (rev 12997)
@@ -31,8 +31,8 @@
<property name="show_sql">@portal.sql.show@</property>
<!-- caching properties -->
- <property name="cache.use_second_level_cache">true</property>
- <property name="cache.use_query_cache">true</property>
+ <property name="cache.use_second_level_cache">false</property>
+ <property name="cache.use_query_cache">false</property>
<!--
| Uncomment in clustered mode : use transactional replicated cache
@@ -62,4 +62,4 @@
<!-- Mapping files -->
<mapping resource="conf/hibernate/cms/domain.hbm.xml"/>
</session-factory>
-</hibernate-configuration>
\ No newline at end of file
+</hibernate-configuration>
More information about the portal-commits
mailing list