This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: How do I prevent JBoss from trying to deploy...gman4911 Jul 30, 2004 3:05 PM (in response to gman4911)Nevermind. Found a solution. :-) 
- 
        2. Re: How do I prevent JBoss from trying to deploy...starksm64 Aug 2, 2004 12:49 AM (in response to gman4911)Use the URLDeploymentScanner Filter attribute in the conf/jboss-service.xml descriptor: <!-- The Filter specifies a java.io.FileFilter for scanned directories. Any file not accepted by this filter will not be deployed. The org.jboss.deployment.scanner.DeploymentFilter rejects the following patterns: "#*", "%*", ",*", ".*", "_$*", "*#", "*$", "*%", "*.BAK", "*.old", "*.orig", "*.rej", "*.bak", "*,v", "*~", ".make.state", ".nse_depinfo", "CVS", "CVS.admin", "RCS", "RCSLOG", "SCCS", "TAGS", "core", "tags" --> <attribute name="Filter">org.jboss.deployment.scanner.DeploymentFilter</attribute> 
 
    