You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by is...@apache.org on 2018/09/13 19:07:22 UTC

svn commit: r1840851 - in /tomcat/trunk: build.xml webapps/docs/changelog.xml

Author: isapir
Date: Thu Sep 13 19:07:22 2018
New Revision: 1840851

URL: http://svn.apache.org/viewvc?rev=1840851&view=rev
Log:
Improved fail fast error message when Ant required version is not installed

Modified:
    tomcat/trunk/build.xml
    tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/build.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1840851&r1=1840850&r2=1840851&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Thu Sep 13 19:07:22 2018
@@ -34,8 +34,7 @@
   <property file="build.properties.default"/>
 
   <!-- Check Ant Version -->
-  <antversion property="ant.version.running" />
-  <fail message="Ant version ${ant.version.required} or newer is required (version ${ant.version.running} is installed)">
+  <fail message="Ant version ${ant.version.required} or newer is required (${ant.version} is installed)">
     <condition>
       <not><antversion atleast="${ant.version.required}" /></not>
     </condition>

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1840851&r1=1840850&r2=1840851&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Thu Sep 13 19:07:22 2018
@@ -41,7 +41,7 @@
   There is no ordering by add/update/fix/scode.
 
   Other fixed issues are added to the end of the list, chronologically.
-  They eventually become mixed with the numbered issues. (I.e., numbered
+  They eventually become mixed with the numbered issues (i.e., numbered
   issues do not "pop up" wrt. others).
 -->
 <section name="Tomcat 9.0.13 (markt)" rtext="in development">
@@ -99,6 +99,12 @@
         (2018-09-12) to pick up some bug fixes and enhancements. (markt)
       </update>
     </changelog>
+    <changelog>
+      <add>
+        <bug>62705</bug>: Added a fail fast check for minimum required Apache
+        Ant version 1.9.8 when building Tomcat. (isapir)
+      </add>
+    </changelog>
   </subsection>
 </section>
 <section name="Tomcat 9.0.12 (markt)" rtext="2018-09-10">



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org