Changes between Initial Version and Version 1 of Ticket #21121, comment 13


Ignore:
Timestamp:
2022-03-31T15:58:45+02:00 (4 years ago)
Author:
taylor.smock

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21121, comment 13

    initial v1  
    3838
    3939It also looks like I should drop `Mapillary` from the `javafx` targets (once I do that, the tests will probably start failing on Java 8 -- JavaFX targets aren't built on Java 8, but I won't do that until the tests are fixed for JDK11).
     40
     41EDIT: Patch to reproduce locally (without Jenkins, and without building all the plugins)
     42{{{
     43#!patch
     44diff --git a/plugins/build.xml b/plugins/build.xml
     45index 44b022410..632a9e194 100644
     46--- a/plugins/build.xml
     47+++ b/plugins/build.xml
     48@@ -23,14 +23,18 @@
     49     <property name="javafx_plugins" value="javafx/build.xml
     50                                                                                        Mapillary/build.xml
     51                                                                                        MicrosoftStreetside/build.xml"/>
     52+    <property name="failing_plugins" value="Mapillary-git/build.xml"/>
     53     <macrodef name="iterate">
     54         <attribute name="target"/>
     55         <sequential>
     56             <subant target="@{target}" inheritall="true">
     57-                <filelist dir="." files="${ordered_plugins}"/>
     58+                <!--<filelist dir="." files="${ordered_plugins}"/>-->
     59                 <!-- Build JavaFX plugins only with Java 11+ -->
     60+                <!--
     61                 <filelist dir="." files="${javafx_plugins}" if:set="isJava11"/>
     62                 <fileset  dir="." includes="*/build.xml" excludes="00_*/build.xml *.wip/build.xml ${javafx_plugins} ${ordered_plugins}"/>
     63+                -->
     64+                <filelist dir="." files="${failing_plugins}"/>
     65             </subant>
     66         </sequential>
     67     </macrodef>
     68}}}