source: osm/applications/editors/josm/plugins/MicrosoftStreetside/build.xml@ 34320

Last change on this file since 34320 was 34319, checked in by renerr18, 7 years ago

JOSM main version set back to 13860 (current)

File size: 2.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--** This is a template build file for a JOSM plugin.
3**
4** Maintaining versions
5** ====================-->
6<project name="MicrosoftStreetside" default="dist" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
7
8 <!-- Configure these properties (replace "..." accordingly).
9 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
10 -->
11 <!-- enter the SVN commit message -->
12 <property name="commit.message" value="Commit message" />
13 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
14 <property name="plugin.main.version" value="13860" />
15
16 <property name="plugin.author" value="renerr18" />
17 <property name="plugin.class" value="org.openstreetmap.josm.plugins.streetside.StreetsidePlugin" />
18 <property name="plugin.description" value="View high resolution Microsoft Streetside 360 degree imagery in JOSM." />
19 <property name="plugin.icon" value="images/streetside-logo-white.png" />
20 <!--property name="plugin.link" value="https://github.com/JOSM/MicrosoftStreetside"/-->
21 <property name="plugin.requires" value="apache-commons;apache-http;"/>
22
23 <property name="plugin.canloadatruntime" value="true"/>
24
25 <!-- edit the properties of this plugin in the file `gradle.properties` -->
26 <property file="${basedir}/gradle.properties"/>
27
28 <property name="josm" location="../../core/dist/josm-custom.jar"/>
29 <property name="plugin.dist.dir" value="../../dist"/>
30
31 <!--** include targets that all plugins have in common **-->
32 <import file="../build-common.xml"/>
33
34 <path id="ivy.lib.path" path="ant/ivy-2.4.0.jar" />
35 <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path" />
36
37 <!-- ** include targets that all plugins have in common ** -->
38 <import file="../build-common.xml" />
39
40 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
41 <include name="apache-commons.jar"/>
42 <include name="apache-http.jar"/>
43 </fileset>
44
45 <target name="pre-compile" depends="fetch_dependencies">
46 <!-- include fetch_dependencies task -->
47 </target>
48
49 <target name="clean_ivy">
50 <delete failonerror="false">
51 <fileset dir="${plugin.lib.dir}">
52 <include name="**/*.jar"/>
53 <exclude name="**/*-custom.jar" />
54 </fileset>
55 </delete>
56 </target>
57
58 <target name="fetch_dependencies" depends="clean_ivy">
59 <echo>fetching dependencies with ivy</echo>
60 <ivy:retrieve pattern="${plugin.lib.dir}/[artifact]-[type].[ext]" conf="default" />
61 </target>
62
63 <target name="install-plugin" depends="clean, dist, install">
64 <echo>Installed areaselector plugin</echo>
65 </target>
66
67 <target name="test-run" depends="install-plugin, runjosm">
68 </target>
69</project>
Note: See TracBrowser for help on using the repository browser.