summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2008-09-02 13:10:57 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2008-09-02 13:10:57 +0000
commitb26232dfc452695692d4086217b81032c87741a5 (patch)
treec93c4c74d5812068b51812e2e5c12b54136ac041 /build
parent04ce8311762c5f3144a9e566df279bd0e2e774a8 (diff)
downloadvaadin-framework-b26232dfc452695692d4086217b81032c87741a5.tar.gz
vaadin-framework-b26232dfc452695692d4086217b81032c87741a5.zip
changed server side build to make java 1.5 classes from java 1.5 sources
svn changeset:5332/svn branch:trunk
Diffstat (limited to 'build')
-rw-r--r--build/build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml
index bfe919e187..6ae700de8d 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -622,7 +622,7 @@
<echo>Compiling src (server-side)</echo>
<!-- Compile -->
<mkdir dir="${result-path}/classes" />
- <javac source="1.4" target="1.4" classpathref="compile.classpath" srcdir="${result-path}/src" destdir="${result-path}/classes" includes="${toolkit-package}/**" debug="true">
+ <javac source="1.5" target="1.5" classpathref="compile.classpath" srcdir="${result-path}/src" destdir="${result-path}/classes" includes="${toolkit-package}/**" debug="true">
</javac>
</target>