|
From: <ls...@us...> - 2008-05-29 19:04:19
|
Revision: 4147
http://jnode.svn.sourceforge.net/jnode/?rev=4147&view=rev
Author: lsantha
Date: 2008-05-29 12:04:17 -0700 (Thu, 29 May 2008)
Log Message:
-----------
Added Java runtime 1.6 check - contribution by Bluebit
Modified Paths:
--------------
trunk/all/build.xml
Modified: trunk/all/build.xml
===================================================================
--- trunk/all/build.xml 2008-05-29 18:54:08 UTC (rev 4146)
+++ trunk/all/build.xml 2008-05-29 19:04:17 UTC (rev 4147)
@@ -168,7 +168,15 @@
</and>
</condition>
</fail>
-
+
+ <fail message="Java Runtime version 1.6 needed. You version is ${java.runtime.version}">
+ <condition>
+ <not>
+ <contains string="${java.runtime.version}" substring="1.6" casesensitive="false"/>
+ </not>
+ </condition>
+ </fail>
+
<!-- Initialize all project directories -->
<property file="${root.dir}/jnode.properties"/>
<!-- Set overwritable properties -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|