diff options
Diffstat (limited to 'theme-compiler/build.xml')
-rw-r--r-- | theme-compiler/build.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/theme-compiler/build.xml b/theme-compiler/build.xml new file mode 100644 index 0000000000..9c3e5f46ce --- /dev/null +++ b/theme-compiler/build.xml @@ -0,0 +1,29 @@ +<?xml version="1.0"?> + +<project name="vaadin-theme-compiler" basedir="." default="publish-local" xmlns:ivy="antlib:org.apache.ivy.ant"> + <description> + Compiles build helpers used when building other modules. + </description> + <include file="../common.xml" as="common" /> + <include file="../build.xml" as="vaadin" /> + + <!-- global properties --> + <property name="module.name" value="vaadin-theme-compiler" /> + <property name="result.dir" value="result" /> + <path id="classpath.compile.custom" /> + + <property name="classes.exclude" value="com/vaadin/buildhelpers/**" /> + + <target name="jar"> + <antcall target="common.jar"> + <reference torefid="extra.jar.includes" refid="empty.reference"/> + </antcall> + </target> + <target name="publish-local" depends="jar"> + <antcall target="common.publish-local" /> + </target> + + <target name="clean"> + <antcall target="common.clean" /> + </target> +</project>
\ No newline at end of file |