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 /uitest/build.xml | |
parent | 557acfb6c4212ad1ddd5270fc7e25f1fc3d63762 (diff) | |
download | vaadin-framework-1d6f0611a8dc7478caf2126ccd191d4284259cba.tar.gz vaadin-framework-1d6f0611a8dc7478caf2126ccd191d4284259cba.zip |
Added themes-compiled module (#9299)
Diffstat (limited to 'uitest/build.xml')
-rw-r--r-- | uitest/build.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/uitest/build.xml b/uitest/build.xml index 6b8a6934c3..8a5fe71b35 100644 --- a/uitest/build.xml +++ b/uitest/build.xml @@ -17,8 +17,8 @@ <target name="dependencies"> <!-- This is copied from common.xml to be able to add server.tests.source to the source path --> - <ivy:resolve resolveid="common" conf="build, build-provided" /> - <ivy:cachepath pathid="classpath.compile.dependencies" conf="build, build-provided" /> + <ivy:resolve resolveid="common" conf="build" /> + <ivy:cachepath pathid="classpath.compile.dependencies" conf="build" /> </target> <target name="compile" description="Compiles the module" depends="dependencies"> @@ -55,10 +55,14 @@ <property name="WebContent.dir" location="${vaadin.basedir}/WebContent" /> <property name="deps.dir" location="${result.dir}/deps" /> + <ivy:resolve resolveid="common" conf="build" /> + <ivy:cachepath pathid="classpath.runtime.dependencies" conf="build" /> + <delete dir="${deps.dir}" /> <mkdir dir="${deps.dir}" /> + <copy todir="${deps.dir}" flatten="true"> - <path refid="classpath.compile.dependencies" /> + <path refid="classpath.runtime.dependencies" /> </copy> <war destfile="${result.war}" duplicate="fail" index="true"> |