diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2014-09-03 11:48:47 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2014-09-03 15:33:01 +0300 |
commit | 927e424acc1e43a12bdbbcd971302d00717af540 (patch) | |
tree | a91f0486fb646f6d1de9a4d590e25100347cc7ec /build/ide.xml | |
parent | 600d5b436d7ca33840b1b697082d140a5040bdf3 (diff) | |
parent | f6282cbe0386d03b57a65450bc163b20bfecfb70 (diff) | |
download | vaadin-framework-927e424acc1e43a12bdbbcd971302d00717af540.tar.gz vaadin-framework-927e424acc1e43a12bdbbcd971302d00717af540.zip |
Merge remote-tracking branch 'origin/master' into grid
This merge needs Grid to use elemental.json instead of org.json
Change-Id: Ib3c387c7e282b2502f266bafbdaad8727f5dc6ef
Diffstat (limited to 'build/ide.xml')
-rwxr-xr-x | build/ide.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/build/ide.xml b/build/ide.xml index 1e586acc19..fff4ba911d 100755 --- a/build/ide.xml +++ b/build/ide.xml @@ -128,13 +128,17 @@ <target name="compile-widgetset" depends="resolve"> <property name="module" value="${widgetset}" /> <property name="module.output.dir" location="WebContent/VAADIN/widgetsets" /> + <property name="logLevel" value="TRACE" /> <property name="style" value="PRETTY" /> <property name="localWorkers" value="2" /> + <!-- Whether assertions should be compiled into the widgetset. + Either "-ea" to enable or "" to disable. --> + <property name="assertions" value="-ea" /> <property name="extraParams" value="" /> <mkdir dir="${module.output.dir}" /> - <echo>Compiling ${module} to ${module.output.dir} with parameters -logLevel TRACE -style ${style} -localWorkers ${localWorkers} -strict ${extraParams}</echo> + <echo>Compiling ${module} to ${module.output.dir} with parameters -logLevel ${logLevel} -style ${style} -localWorkers ${localWorkers} ${assertions} -strict ${extraParams}</echo> <!--<ivy:resolve log="download-only" inline="true" organisation="javax.validation" module="validation-api" revision="1.0.0.GA"/> --> @@ -144,14 +148,14 @@ <arg value="-workDir" /> <arg value="${work.dir}" /> <arg value="-logLevel" /> - <arg value="TRACE" /> + <arg value="${logLevel}" /> <arg value="-war" /> <arg value="${module.output.dir}" /> <arg value="-style" /> <arg value="${style}" /> - <arg value="-localWorkers" /> <arg value="${localWorkers}" /> + <arg line="${assertions}" /> <arg value="-strict" /> <arg line="${extraParams}" /> <arg value="${module}" /> |