[jboss-cvs] JBossAS SVN: r64105 - trunk/server/src/etc/conf/default.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jul 18 02:01:05 EDT 2007


Author: scott.stark at jboss.org
Date: 2007-07-18 02:01:05 -0400 (Wed, 18 Jul 2007)
New Revision: 64105

Modified:
   trunk/server/src/etc/conf/default/bootstrap-repo-beans.xml
Log:
Add the DeploymentFilter bean for use by the hasingleton scanner

Modified: trunk/server/src/etc/conf/default/bootstrap-repo-beans.xml
===================================================================
--- trunk/server/src/etc/conf/default/bootstrap-repo-beans.xml	2007-07-18 00:45:01 UTC (rev 64104)
+++ trunk/server/src/etc/conf/default/bootstrap-repo-beans.xml	2007-07-18 06:01:05 UTC (rev 64105)
@@ -233,5 +233,15 @@
 	   <property name="mbeanServer"><inject bean="JMXKernel" property="mbeanServer"/></property>
 	   <property name="aspectManager"><inject bean="AspectManager"/></property>
 	</bean>
-    
+
+   <!-- A filter for excluding files from the scanner -->
+   <bean name="DeploymentFilter" class="org.jboss.virtual.plugins.vfs.helpers.ExtensibleFilter">
+      <!-- Files starting with theses strings are ignored -->
+      <property name="prefixes">#,%,\,,.,_$</property>
+      <!-- Files ending with theses strings are ignored -->
+      <property name="suffixes">#,$,%,~,\,v,.BAK,.bak,.old,.orig,.tmp,.rej,.sh</property>
+      <!-- Files matching with theses strings are ignored -->
+      <property name="matches">.make.state,.nse_depinfo,CVS,CVS.admin,RCS,RCSLOG,SCCS,TAGS,core,tags</property>
+   </bean>
+   
 </deployment>




More information about the jboss-cvs-commits mailing list