How to disable some of the default applications that come with OFBiz? (In particular the HR application).
Removing <load-component component-location="humanres"/>
the applications\component-load.xml
gave me NULL pointer exception when I restarted the application. Searching Google gave me this: http://www.mail-archive.com/user@ofbiz.apache.org/msg05714.html which suggested that I remove the applications directory. I don't want to do that, I simply want to disable an application. I may need to enable it later.
It is not that easy to disable an application or framework components in OFBiz because there are inter-app dependencies, mostly based on entity definitions. In this specific case the error is generated because of dependency from accounting to HR component.
If you really want to disable the component you have to tract down all the dependencies and fix them. Is there a specific reason you want to "disable" HR component? Instead you can remove it fromt the screen by setting app-bar-display="false" and even prevent logging in that application with some permissions for example.
From the other hand, disabling special-purpsoe apps should be straight forward.