Hi Isomorphic,
I'm in the process of making my application footprint small. Reason behind this is that I need to compile and deploy per tenant and per test system and upload speed here is not good.
This is working for me:
As the Development Console is using the framework files in the development directory (which by the way differ from the "normal" framework js files) I wanted to ask if it is possible that you make the Development Console use the normal files.
Best regards
Blama
I'm in the process of making my application footprint small. Reason behind this is that I need to compile and deploy per tenant and per test system and upload speed here is not good.
This is working for me:
Code:
<war basedir="war" destfile="${build-directory}/${war-file-name}" webxml="war/WEB-INF/web.xml" duplicate="fail"> <exclude name="WEB-INF/**/*.*" /> <!-- Excluding generated SmartGWT debug files --> <exclude name="**/modules-debug/**" /> <!-- Excluding generated SmartGWT precompressed files --> <exclude name="**/sc/modules/*.js.gz" /> <exclude name="**/sc/system/development/*.js.gz" /> <!-- Excluding generated SmartGWT skins --> <exclude name="**/sc/skins/EnterpriseBlue/**" /> <exclude name="**/sc/skins/Graphite/**" /> <exclude name="**/sc/skins/ToolSkin/**" /> <exclude name="**/sc/skins/ToolSkinNative/**" /> [B] <!-- Excluding generated development files, currently breaks Development Console <exclude name="**/sc/system/development/**" /> -->[/B] <!-- Excluding generated tools files --> <exclude name="**/tools/selenium/**" /> <exclude name="**/tools/visualBuilder/**" />
Best regards
Blama
Comment