diff options
author | Henri Sara <hesara@vaadin.com> | 2016-04-17 00:14:39 +0300 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2016-04-17 00:14:39 +0300 |
commit | 9beaf0fa7fb404d20353ae2179863e9e3cb35ef9 (patch) | |
tree | 7d98cda750bad4e2ac5b040a2314fd36e318c685 /uitest/build.xml | |
parent | 6b134587d6aae49f033df3a0d66216b2f984eab0 (diff) | |
download | vaadin-framework-9beaf0fa7fb404d20353ae2179863e9e3cb35ef9.tar.gz vaadin-framework-9beaf0fa7fb404d20353ae2179863e9e3cb35ef9.zip |
Further Ivy/Ant cleanup
This change removes the top-level build.xml and some other Ivy/Ant
configuration entries.
Change-Id: I56fb1621a66ef190a72cfe1f9eb277bb878db4b5
Diffstat (limited to 'uitest/build.xml')
-rw-r--r-- | uitest/build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/build.xml b/uitest/build.xml index 68e6da0fd4..36d097ba82 100644 --- a/uitest/build.xml +++ b/uitest/build.xml @@ -6,7 +6,6 @@ Provides a uitest WAR containing Vaadin UI tests </description> <include file="../common.xml" as="common" /> - <include file="../build.xml" as="vaadin" /> <!-- global properties --> <property name="module.name" value="vaadin-uitest" /> @@ -60,7 +59,8 @@ </target> <target name="clean"> - <antcall target="common.clean" /> + <fail unless="result.dir" message="No result.dir parameter given" /> + <delete dir="${result.dir}" /> </target> <target name="checkstyle"> <echo>Checkstyle is disabled for uitest for now</echo> |