Suppose I wish to put my custom components in a directory named 'cc', which will sit next to the 'moqui-trunk' directory.
dev/
|-- cc/
|-- moqui-trunk/
There's a setting in MoquiInit.properties
moqui.runtime=../moqui/runtime
One would ideally think that changing this to ../cc
should do the job. But underneath there's another block, which says:
if there is a "runtime" directory in the war file (in the root of the webapp) that will be used instead of this setting
I think if I rename/delete the 'runtime' directory in the 'moqui-trunk' directory, then it would start picking components from my 'cc' directory. But how can I achieve the same with minimum changes in the 'moqui-trunk' (so as to easily manage patches, svn update etc).