Small patch to avoid two startup errors

Posted by Jacopo Cappellato on
URL: http://ofbiz.116.s1.nabble.com/Small-patch-to-avoid-two-startup-errors-tp169403.html

David,

could you please commit the attached patch for the base component: with
this, the specialized and webapp folder are not loaded.

Thanks,
Jacopo

Index: framework/base/config/component-load.xml
===================================================================
--- framework/base/config/component-load.xml (revision 419194)
+++ framework/base/config/component-load.xml (working copy)
@@ -21,7 +21,7 @@
         xsi:noNamespaceSchemaLocation="http://www.ofbiz.org/dtds/component-loader.xsd">
     <load-components parent-directory="${ofbiz.home}/framework"/>
     <load-components parent-directory="${ofbiz.home}/applications"/>
-    <load-components parent-directory="${ofbiz.home}/specialized"/>
+    <!--<load-components parent-directory="${ofbiz.home}/specialized"/>-->
     <load-components parent-directory="${ofbiz.home}/hot-deploy"/>
-    <load-component component-location="${ofbiz.home}/website"/>
+    <!--<load-component component-location="${ofbiz.home}/website"/>-->
 </component-loader>