diff options
author | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2009-02-17 15:01:43 +0000 |
---|---|---|
committer | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2009-02-17 15:01:43 +0000 |
commit | c8e8878b8eb87b745107a3fe9b3da8e780d2a29a (patch) | |
tree | 101f14ba5fd74166671928e60a02cd1c77dbeda4 /build | |
parent | 737885753c56b92b2e7fd14dfb7af524b9e3f39c (diff) | |
download | vaadin-framework-c8e8878b8eb87b745107a3fe9b3da8e780d2a29a.tar.gz vaadin-framework-c8e8878b8eb87b745107a3fe9b3da8e780d2a29a.zip |
Report Java version when compilation fails
svn changeset:6881/svn branch:trunk
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml index 0a3c6651db..98102bc609 100644 --- a/build/build.xml +++ b/build/build.xml @@ -119,7 +119,7 @@ <condition property="java.version.matches"> <equals arg1="${ant.java.version}" arg2="1.5"/> </condition> - <fail unless="java.version.matches" message="IT Mill Toolkit must be compiled with genuine Java 1.5 compiler."/> + <fail unless="java.version.matches" message="IT Mill Toolkit must be compiled with genuine Java 1.5 compiler. You are trying to compile with version ${ant.java.version}."/> <echo>Java version is ${ant.java.version} as required.</echo> </target> |