DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=32804 ------- Additional Comments From jan@materne.de 2004-12-23 08:01 ------- Not the "cleanest" way, but I wrote two *def´s for handling with that: " + neededInt); verbose("Actual: " + actual + " --> " + actualInt); check = false; if (actualInt >= neededInt) check = true; if (!check) { java.lang.System.out.println(" -- abbruch --"); fail = project.createTask("fail"); fail.setMessage("Needed Ant-Version (" + needed + ") not available. Was: " + actual); fail.perform(); } // convert the version string to int value for easier comparison function getInt(string) { if (string.equals("1.1")) return 11; if (string.equals("1.2")) return 12; if (string.equals("1.3")) return 13; if (string.equals("1.4")) return 14; if (string.equals("1.4.1")) return 14.1; if (string.equals("1.5")) return 15; if (string.equals("1.5.1")) return 15.1; if (string.equals("1.5.2")) return 15.2; if (string.equals("1.5.3")) return 15.3; if (string.equals("1.5.4")) return 15.4; if (string.equals("1.5alpha")) return 15.880; if (string.equals("1.6beta1")) return 15.991; if (string.equals("1.6beta2")) return 15.992; if (string.equals("1.6beta3")) return 15.993; if (string.equals("1.6")) return 16; if (string.equals("1.6.0") ) return 16; if (string.equals("1.6.1") ) return 16.1; if (string.equals("1.6.2") ) return 16.2; if (string.equals("1.6.3") ) return 16.3; if (string.equals("1.7alpha")) return 16.880; if (string.equals("1.7beta")) return 16.990; if (string.equals("1.7")) return 17; if (string.equals("1.7.0")) return 17; if (string.equals("1.7.1")) return 17.1; if (string.equals("1.7.2")) return 17.2; return 0; } // log-message function verbose(msg) { project.log("[needAnt] " + msg, project.MSG_VERBOSE); } ]]> -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org