summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-23 10:43:24 +0300
committerArtur Signell <artur@vaadin.com>2012-09-09 11:22:53 +0300
commit0a77dae8b57a99cb5112a387b2a374c14e1fae1b (patch)
tree992dbc6efa884c1daae9030191e3ddba147ffd53 /build.xml
parent0c34d82bf947439e9ad9513c9758fb753425c5e4 (diff)
downloadvaadin-framework-0a77dae8b57a99cb5112a387b2a374c14e1fae1b.tar.gz
vaadin-framework-0a77dae8b57a99cb5112a387b2a374c14e1fae1b.zip
Created separate build.xml files for each module (#9299)
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/build.xml b/build.xml
new file mode 100644
index 0000000000..f735a6ae7a
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0"?>
+
+<project name="vaadin" basedir="." default="all" xmlns:ivy="antlib:org.apache.ivy.ant">
+ <include file="common.xml" as="common" />
+
+ <path id="vaadin.buildhelpers.classpath" location="${vaadin.basedir}/buildhelpers/result/classes" />
+
+ <!-- =================================
+ target: all
+ ================================= -->
+ <!--<target name="all" description="Compiles all parts of the project" depends="buildhelpers,theme-compiler,shared,server,client">-->
+ <target name="all" description="Compiles all parts of the project" depends="buildorder">
+
+ <subant buildpathref="build-path">
+ </subant>
+ </target>
+
+ <target name="buildorder">
+ <!-- Find out a good build order -->
+ <ivy:buildlist reference="build-path">
+ <fileset dir="." includes="**/build.xml">
+ <exclude name="build.xml" />
+ <exclude name="build/**" />
+ </fileset>
+ </ivy:buildlist>
+ </target>
+ <target name="clean" depends="buildorder">
+ <subant buildpathref="build-path" target="clean">
+ </subant>
+ </target>
+
+</project>