diff options
author | Artur Signell <artur@vaadin.com> | 2012-09-10 16:12:47 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-10 16:31:04 +0300 |
commit | 7e89dcb34ed5864e0ae3f14ffb60a2365503aff1 (patch) | |
tree | 6c4197d81c422b49f3dbaf0aed33051e7116d051 /build | |
parent | cb9e64258eef9c51c32fc9c0c5e96c9b0f35345b (diff) | |
download | vaadin-framework-7e89dcb34ed5864e0ae3f14ffb60a2365503aff1.tar.gz vaadin-framework-7e89dcb34ed5864e0ae3f14ffb60a2365503aff1.zip |
Use build/classes and bin to be more compatible (#9299)
Diffstat (limited to 'build')
-rwxr-xr-x | build/ide.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/ide.xml b/build/ide.xml index f0bc95a34f..6d710b66cb 100755 --- a/build/ide.xml +++ b/build/ide.xml @@ -2,7 +2,6 @@ <project xmlns:antcontrib="antlib:net.sf.antcontrib" xmlns:artifact="antlib:org.apache.maven.artifact.ant" xmlns:ivy="antlib:org.apache.ivy.ant" name="Build script for IDE users" basedir=".." default="theme-and-default-widgetset"> <!-- FIXME, should use 7.0-SNAPSHOT of client compiler --> - <property name="classes" location="bin" /> <property name="work.dir" location="work" /> <property name="gwt.root" location="${basedir}/../trunk" /> <property name="gwt.lib.dir" location="${gwt.root}/build/lib" /> @@ -18,7 +17,8 @@ <pathelement location="${gwt.dev.jar}" /> <path refid="ivy.deps" /> <path refid="ivy.deps2" /> - <path location="${classes}" /> + <path location="bin" /> + <path location="build/classes" /> <path location="server/src" /> <path location="shared/src" /> <path location="client/src" /> |