diff options
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" /> |