diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-31 16:13:18 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-09 11:23:07 +0300 |
commit | 557acfb6c4212ad1ddd5270fc7e25f1fc3d63762 (patch) | |
tree | 03d5d4887370830d3987df959e3ccc5c287a416a /client-compiled | |
parent | 4156f77898416e1b5a7f0ef69823b2dda537bab2 (diff) | |
download | vaadin-framework-557acfb6c4212ad1ddd5270fc7e25f1fc3d63762.tar.gz vaadin-framework-557acfb6c4212ad1ddd5270fc7e25f1fc3d63762.zip |
Module for compiled client side (#9299)
Diffstat (limited to 'client-compiled')
-rw-r--r-- | client-compiled/build.xml | 100 | ||||
-rw-r--r-- | client-compiled/ivy.xml | 26 |
2 files changed, 126 insertions, 0 deletions
diff --git a/client-compiled/build.xml b/client-compiled/build.xml new file mode 100644 index 0000000000..588d232ab2 --- /dev/null +++ b/client-compiled/build.xml @@ -0,0 +1,100 @@ +<?xml version="1.0"?> + +<project name="vaadin-client-compiler" basedir="." default="publish-local" xmlns:ivy="antlib:org.apache.ivy.ant"> + <description> + Compiled (JS+HTML) version of client side + </description> + + <include file="../common.xml" as="common" /> + <include file="../build.xml" as="vaadin" /> + <include file="../gwt-files.xml" as="gwtfiles" /> + + <!-- global properties --> + <property name="module.name" value="vaadin-client-compiled" /> + <property name="result.dir" value="result" /> + + <target name="default-widgetset"> + <antcall target="compile-module"> + <param name="module" value="com.vaadin.DefaultWidgetSet" /> + </antcall> + </target> + + + <target name="compile-module"> + <fail unless="module" message="You must give the module to compile in the 'module' parameter" /> + <property name="result.dir" location="result" /> + <property name="style" value="OBF" /> + <property name="localWorkers" value="2" /> + <property name="extraParams" value="" /> + <property name="module.output.dir" location="${result.dir}/VAADIN/widgetsets" /> + + <ivy:resolve resolveid="common" conf="build" /> + <ivy:cachepath pathid="classpath.compile.widgetset" conf="build" /> + + <echo>Compiling ${module} to ${module.output.dir}</echo> + <mkdir dir="${module.output.dir}" /> + + <!-- Disabled to reduce JAR size: precompile the widgetset to a .gwtar file --> + <!-- + <java classname="com.google.gwt.dev.CompileModule" classpathref="compile.classpath.widgetset" failonerror="yes" fork="yes" maxmemory="512m"> + <arg value="-out" /> + <arg value="${result-precompiled-widgetsets}" /> + <arg value="-strict" /> + <arg value="${widgetset}" /> + + <jvmarg value="-Xss8M"/> + <jvmarg value="-XX:MaxPermSize=256M"/> + <jvmarg value="-Djava.awt.headless=true"/> + </java> + --> + + <!-- compile the widgetset --> + <java classname="com.google.gwt.dev.Compiler" classpathref="classpath.compile.widgetset" failonerror="yes" fork="yes" maxmemory="512m"> + <arg value="-war" /> + <arg value="${module.output.dir}" /> + <arg value="-style" /> + <arg value="${style}" /> + <arg value="-localWorkers" /> + <arg value="${localWorkers}" /> + <arg value="-strict" /> + <arg line="${extraParams}" /> + <arg value="${module}" /> + + <sysproperty key="vFailIfNotSerializable" value="true" /> + + <jvmarg value="-Xss8M" /> + <jvmarg value="-XX:MaxPermSize=256M" /> + <jvmarg value="-Djava.awt.headless=true" /> + </java> + + <!--<antcall target="remove-gwt-tmp" />--> + + <echo>Compiled ${module}</echo> + </target> + + + <target name="jar" depends="default-widgetset"> + <property name="result.jar" location="${result.dir}/lib/${module.name}-${vaadin.version}.jar" /> + <property name="module.output.dir" location="${result.dir}/VAADIN/widgetsets" /> + + <jar file="${result.jar}" compress="true"> + <fileset dir="${module.output.dir}"> + </fileset> + <fileset refid="common.files.for.all.jars" /> + </jar> + </target> + + <target name="publish-local" depends="jar"> + <antcall target="common.publish-local" /> + </target> + + <target name="clean"> + <antcall target="common.clean" /> + </target> + + <target name="tests"> + <!--<antcall target="common.tests.run" />--> + <echo>WHAT? No tests for ${module.name}!</echo> + </target> + +</project>
\ No newline at end of file diff --git a/client-compiled/ivy.xml b/client-compiled/ivy.xml new file mode 100644 index 0000000000..5e739a0d0d --- /dev/null +++ b/client-compiled/ivy.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ivy-module version="2.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd"> + + <info organisation="com.vaadin" module="vaadin-client-compiled" + revision="${vaadin.version}" /> + + <configurations> + <conf name="build" /> + </configurations> + <publications> + <artifact type="jar"></artifact> + </publications> + <dependencies defaultconfmapping="*->build"> + <dependency org="com.vaadin" name="vaadin-server" + rev="${vaadin.version}" /> + <dependency org="com.vaadin" name="vaadin-client" + rev="${vaadin.version}" /> + <dependency org="com.vaadin" name="vaadin-client-compiler" + rev="${vaadin.version}" /> + <dependency org="javax.validation" name="validation-api" + rev="1.0.0.GA" conf="build-> default,sources" /> + </dependencies> + +</ivy-module> |