Changeset 35766 in osm for applications/editors


Ignore:
Timestamp:
2021-05-23T15:14:21+02:00 (3 years ago)
Author:
simon04
Message:

see #16860 - Apache Ivy: fallback to core ivysettings.xml when plugin ivy_settings.xml does not exist

Location:
applications/editors/josm/plugins
Files:
3 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/build-common.xml

    r35765 r35766  
    755755    <target name="fetch_dependencies" depends="clean_ivy, init-ivy">
    756756        <echo>fetching dependencies with ivy</echo>
    757         <ivy:settings file="ivy_settings.xml" />
     757        <available property="plugin.ivysettings.exists" file="ivy_settings.xml"/>
     758        <ivy:settings file="ivy_settings.xml" if:set="plugin.ivysettings.exists"/>
     759        <ivy:settings file="${josm.ivysettings}" unless:set="plugin.ivysettings.exists"/>
    758760        <ivy:resolve />
    759761        <ivy:retrieve pattern="${plugin.lib.dir}/[artifact]-[revision](-[classifier]).[ext]" conf="default" />
Note: See TracChangeset for help on using the changeset viewer.