Changeset 35374 in osm
- Timestamp:
- 2020-03-17T13:32:15+01:00 (5 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/SaudiNationalAddress
-
Property svn:ignore
set to
build
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/build-common.xml
r35344 r35374 65 65 <condition property="isJava12"><matches string="${ant.java.version}" pattern="1[2-9]" /></condition> 66 66 <condition property="isJava13"><matches string="${ant.java.version}" pattern="1[3-9]" /></condition> 67 <!-- Disable jacoco on Java 13+, see https://github.com/jacoco/jacoco/pull/738 --> 67 <condition property="isJava16"><matches string="${ant.java.version}" pattern="1[6-9]" /></condition> 68 <!-- Disable jacoco on Java 16+, see https://github.com/jacoco/jacoco/pull/992 --> 68 69 <condition property="coverageByDefault"> 69 70 <not> 70 <isset property="isJava1 3"/>71 <isset property="isJava16"/> 71 72 </not> 72 73 </condition> -
applications/editors/josm/plugins/build.xml
r34707 r35374 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <project name="josm-plugins" default="dist" basedir="." >2 <project name="josm-plugins" default="dist" basedir="." xmlns:if="ant:if" xmlns:unless="ant:unless"> 3 3 <target name="compile_josm" unless="skip-josm"> 4 4 <ant dir="../core" target="dist"/> … … 7 7 <ant dir="../core" target="test-compile"/> 8 8 </target> 9 <!-- For Java specific stuff by version --> 10 <condition property="isJava11"><matches string="${ant.java.version}" pattern="1[1-9]" /></condition> 11 <!-- Specific plugins --> 9 12 <property name="ordered_plugins" value="jaxb/build.xml 10 13 jna/build.xml 11 14 jts/build.xml 12 15 gson/build.xml 13 javafx/build.xml14 16 ejml/build.xml 15 17 geotools/build.xml … … 19 21 apache-http/build.xml 20 22 austriaaddresshelper/build.xml"/> 23 <property name="javafx_plugins" value="javafx/build.xml 24 Mapillary/build.xml 25 MicrosoftStreetside/build.xml"/> 21 26 <macrodef name="iterate"> 22 27 <attribute name="target"/> … … 24 29 <subant target="@{target}" inheritall="true"> 25 30 <filelist dir="." files="${ordered_plugins}"/> 26 <fileset dir="." includes="*/build.xml" excludes="00_*/build.xml *.wip/build.xml ${ordered_plugins}"/> 31 <!-- Build JavaFX plugins only with Java 11+ --> 32 <filelist dir="." files="${javafx_plugins}" if:set="isJava11"/> 33 <fileset dir="." includes="*/build.xml" excludes="00_*/build.xml *.wip/build.xml ${javafx_plugins} ${ordered_plugins}"/> 27 34 </subant> 28 35 </sequential> -
applications/editors/josm/plugins/comfort0
- Property svn:ignore
-
old new 1 1 build 2 2 javadoc 3 bin 4 bintest
-
- Property svn:ignore
Note:
See TracChangeset
for help on using the changeset viewer.