Author: jaz
Date: Wed Jun 4 15:41:23 2008
New Revision: 663395
URL:
http://svn.apache.org/viewvc?rev=663395&view=revLog:
now excluding mx4j, commons-el and mail.jar since they are included w/ JBoss and causing conflicts
Modified:
ofbiz/trunk/framework/appserver/templates/jboss422/application.xml
ofbiz/trunk/framework/appserver/templates/jboss422/deploy.sh
Modified: ofbiz/trunk/framework/appserver/templates/jboss422/application.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/appserver/templates/jboss422/application.xml?rev=663395&r1=663394&r2=663395&view=diff==============================================================================
--- ofbiz/trunk/framework/appserver/templates/jboss422/application.xml (original)
+++ ofbiz/trunk/framework/appserver/templates/jboss422/application.xml Wed Jun 4 15:41:23 2008
@@ -7,6 +7,7 @@
<display-name>OFBiz</display-name>
<#list webApps as webapp>
+
<module>
<web>
<web-uri>${webapp.getContextRoot()}.war</web-uri>
Modified: ofbiz/trunk/framework/appserver/templates/jboss422/deploy.sh
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/appserver/templates/jboss422/deploy.sh?rev=663395&r1=663394&r2=663395&view=diff==============================================================================
--- ofbiz/trunk/framework/appserver/templates/jboss422/deploy.sh (original)
+++ ofbiz/trunk/framework/appserver/templates/jboss422/deploy.sh Wed Jun 4 15:41:23 2008
@@ -32,7 +32,7 @@
# copy all lib files
mkdir lib
<#list classpathJars as jar>
-<#if (!jar.contains("j2eespec") && !jar.contains("geronimo") && !jar.contains("catalina"))>
+<#if (!jar.contains("j2eespec") && !jar.contains("geronimo") && !jar.contains("catalina") && !jar.contains("mx4j") && !jar.contains("commons-el") && !jar.equals("mail.jar"))>
cp ${jar} ./lib
</#if>
</#list>