...
1) An additional environment variable was added to ssp-config.properties called ssp_main_use_minified_js.
When set to true, ssp-main.jsp will include the reference to the minified js called app-all.js
When set to false, ssp-main.jsp will include the reference to the non-minified app.js
2) Three additional profiles added to SSP's pom.xml
profile for calling Sencha from Windows (called WINS)
provile for calling Sencha from *inux (called LINUX)
profile for skipping the sencha build (called SKIP_SENCHA)
The default behavior is to generate the aggregated files (app-all.js and all-classes.js). To build without the aggregated files, one can call:
%> mvn -PSKIP_SENCHA clean install
...