Ignore:
Timestamp:
2020-08-19T21:00:00+02:00 (4 years ago)
Author:
stoecker
Message:

improve ivy support, see #19562

File:
1 edited

Legend:

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

    r34632 r35523  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <project name="apache-http" default="dist" basedir=".">
     2<project name="apache-http" default="dist" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
    33
    44    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
     
    1111    <property name="plugin.class" value="org.openstreetmap.josm.plugins.http.HttpPlugin"/>
    1212    <property name="plugin.description" value="Provides Apache HTTP library. Not meant to be installed directly by users, but rather as a dependency for other plugins."/>
    13    
    14         <property name="josm" location="../../core/dist/josm-custom.jar"/>
    15         <property name="plugin.dist.dir" value="../../dist"/>
     13
    1614    <property name="plugin.requires" value="apache-commons;jna"/>
    1715    <property name="plugin.stage" value="15"/>
     
    2018    <import file="../build-common.xml"/>
    2119
     20    <target name="resolve" description="--> retrieve dependencies with Ivy">
     21        <ivy:retrieve/>
     22    </target>
     23
     24    <target name="dist" depends="resolve,plugin_common.dist"/>
     25
    2226</project>
Note: See TracChangeset for help on using the changeset viewer.