You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2018/08/02 17:13:57 UTC

svn commit: r1837329 - /pivot/trunk/build.xml

Author: rwhitcomb
Date: Thu Aug  2 17:13:57 2018
New Revision: 1837329

URL: http://svn.apache.org/viewvc?rev=1837329&view=rev
Log:
Properly check for JDK 9 or (now) JDK 10 for use in building Pivot.

Modified:
    pivot/trunk/build.xml

Modified: pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/pivot/trunk/build.xml?rev=1837329&r1=1837328&r2=1837329&view=diff
==============================================================================
--- pivot/trunk/build.xml (original)
+++ pivot/trunk/build.xml Thu Aug  2 17:13:57 2018
@@ -136,7 +136,8 @@ limitations under the License.
                     <not>
                         <or>
                             <equals arg1="${ant.java.version}" arg2="1.8"/>
-                            <equals arg1="${ant.java.version}" arg2="1.9"/>
+                            <equals arg1="${ant.java.version}" arg2="9"/>
+                            <equals arg1="${ant.java.version}" arg2="10"/>
                         </or>
                     </not>
                 </condition>