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

Last change on this file since 34428 was 34428, checked in by renerr18, 6 years ago

Improvements and refactoring (logging, ImageInfo, CubemapBuilder) post release.

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 <property name="plugin.version" value="13860" />
16
17 <property name="plugin.author" value="renerr18" />
18 <property name="plugin.class" value="org.openstreetmap.josm.plugins.streetside.StreetsidePlugin" />
19 <property name="plugin.description" value="View high resolution Microsoft Streetside 360 degree imagery in JOSM." />
20 <property name="plugin.icon" value="images/streetside-logo-white.png" />
21 <property name="plugin.link" value="https://github.com/spatialdev/MicrosoftStreetside"/>
22 <property name="plugin.requires" value="apache-commons;apache-http;"/>
23
24 <property name="plugin.canloadatruntime" value="true"/>
25
26 <!-- edit the properties of this plugin in the file `gradle.properties` -->
27 <property file="${basedir}/gradle.properties"/>
28
29 <property name="josm" location="../../core/dist/josm-custom.jar"/>
30 <property name="plugin.dist.dir" value="../../dist"/>
31
32 <!--** include targets that all plugins have in common **-->
33 <import file="../build-common.xml"/>
34
35 <path id="ivy.lib.path" path="ant/ivy-2.4.0.jar" />
36 <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path" />
37
38 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
39 <include name="apache-commons.jar"/>
40 <include name="apache-http.jar"/>
41 <include name="utilsplugin2.jar"/>
42 </fileset>
43
44 <target name="pre-compile" depends="fetch_dependencies">
45 <!-- include fetch_dependencies task -->
46 </target>
47
48 <target name="clean_ivy">
49 <delete failonerror="false">
50 <fileset dir="${plugin.lib.dir}">
51 <include name="**/*.jar"/>
52 <exclude name="**/*-custom.jar" />
53 </fileset>
54 </delete>
55 </target>
56
57 <target name="fetch_dependencies" depends="clean_ivy">
58 <echo>fetching dependencies with ivy</echo>
59 <ivy:retrieve pattern="${plugin.lib.dir}/[artifact]-[type].[ext]" conf="default" />
60 </target>
61
62 <target name="install-plugin" depends="clean, dist, install">
63 <echo>Installed Microsoft Streetside plugin</echo>
64 </target>
65
66 <target name="test-run" depends="install-plugin, runjosm">
67 </target>
68</project>
Note: See TracBrowser for help on using the repository browser.