diff options
author | Artur Signell <artur@vaadin.com> | 2012-09-03 15:36:28 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-09 11:23:08 +0300 |
commit | 1d6f0611a8dc7478caf2126ccd191d4284259cba (patch) | |
tree | 19ce396cb937c1255796552a78d944a0b99e26ec /themes-compiled/build.xml | |
parent | 557acfb6c4212ad1ddd5270fc7e25f1fc3d63762 (diff) | |
download | vaadin-framework-1d6f0611a8dc7478caf2126ccd191d4284259cba.tar.gz vaadin-framework-1d6f0611a8dc7478caf2126ccd191d4284259cba.zip |
Added themes-compiled module (#9299)
Diffstat (limited to 'themes-compiled/build.xml')
-rw-r--r-- | themes-compiled/build.xml | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/themes-compiled/build.xml b/themes-compiled/build.xml new file mode 100644 index 0000000000..c295c570cd --- /dev/null +++ b/themes-compiled/build.xml @@ -0,0 +1,103 @@ +<?xml version="1.0"?> + +<project name="vaadin-client-compiler" basedir="." default="publish-local" xmlns:ivy="antlib:org.apache.ivy.ant"> + <description> + Themes compiled to CSS + </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-themes-compiled" /> + <property name="result.dir" value="result" /> + <property name="theme.result.dir" value="${result.dir}/VAADIN/themes" /> + + <target name="compile-themes"> + <ivy:resolve resolveid="common" conf="build" /> + <ivy:cachepath pathid="classpath.compile.theme" conf="build" /> + + <antcall target="compile-theme"> + <param name="theme" value="base" /> + </antcall> + <antcall target="compile-theme"> + <param name="theme" value="runo" /> + </antcall> + <antcall target="compile-theme"> + <param name="theme" value="reindeer" /> + </antcall> + <antcall target="compile-theme"> + <param name="theme" value="chameleon" /> + </antcall> + <antcall target="compile-theme"> + <param name="theme" value="liferay" /> + </antcall> + </target> + + <target name="jar" depends="compile-themes"> + <fail unless="module.name" message="No module.name parameter given" /> + + <property name="result.dir" location="result" /> + <property name="result.jar" location="${result.dir}/lib/${module.name}-${vaadin.version}.jar" /> + <property name="classes" location="{$result.dir}/classes" /> + + <jar jarfile="${result.jar}"> + <fileset dir="${result.dir}"> + <include name="VAADIN/themes/**" /> + </fileset> + <fileset refid="common.files.for.all.jars" /> + </jar> + + </target> + <target name="copy-theme"> + <fail unless="theme" message="You must give the theme name to copy n the 'theme' parameter" /> + <property name="theme.source.dir" location="../WebContent/VAADIN/themes" /> + + <copy todir="${theme.result.dir}"> + <fileset dir="${theme.source.dir}"> + <include name="${theme}/**" /> + </fileset> + </copy> + </target> + + <target name="compile-theme" depends="copy-theme"> + <fail unless="theme" message="You must give the theme name to compile in the 'theme' parameter" /> + + <ivy:resolve resolveid="common" conf="compile-theme" /> + <ivy:cachepath pathid="classpath.compile.theme" conf="compile-theme" /> + <ivy:cachepath pathid="classpath.runtime.theme" conf="build" /> + + <echo>Compiling ${theme}</echo> + <mkdir dir="${theme.result.dir}" /> + + <!-- compile the theme --> + <java classname="com.vaadin.buildhelpers.CompileTheme" classpathref="classpath.compile.theme" failonerror="yes" fork="yes" maxmemory="512m"> + <arg value="--theme" /> + <arg value="${theme}" /> + <arg value="--theme-folder" /> + <arg value="${theme.result.dir}" /> + <jvmarg value="-Xss8M" /> + <jvmarg value="-XX:MaxPermSize=256M" /> + <jvmarg value="-Djava.awt.headless=true" /> + </java> + + </target> + + + <target name="publish-local" depends="jar"> + <antcall target="common.publish-local"> + + </antcall> + </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 |