source: osm/applications/editors/josm/plugins/videomapping/build.xml@ 28772

Last change on this file since 28772 was 28289, checked in by stoecker, 12 years ago

fix compile errors, cleanup build file

File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3** This is a template build file for a JOSM plugin.
4**
5** Maintaining versions
6** ====================
7** see README.template
8**
9** Usage
10** =====
11** To build it run
12**
13** > ant dist
14**
15** To install the generated plugin locally (in you default plugin directory) run
16**
17** > ant install
18**
19** The generated plugin jar is not automatically available in JOSMs plugin configuration
20** dialog. You have to check it in first.
21**
22** Use the ant target 'publish' to check in the plugin and make it available to other
23** JOSM users:
24** set the properties commit.message and plugin.main.version
25** and run
26** > ant publish
27**
28**
29-->
30<project name="videomapping" default="dist" basedir=".">
31
32 <!-- enter the SVN commit message -->
33 <property name="commit.message" value="videomapping"/>
34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
35 <property name="plugin.main.version" value="4980"/>
36
37 <!--
38 **********************************************************
39 ** include targets that all plugins have in common
40 **********************************************************
41 -->
42 <import file="../build-common.xml"/>
43
44 <property name="vlcj" value="${plugin.lib.dir}/vlcj-1.1.5.1.jar"/>
45 <property name="jna" value="${plugin.lib.dir}/jna.jar"/>
46 <property name="platform" value="${plugin.lib.dir}/platform.jar"/>
47 <property name="log4j" value="${plugin.lib.dir}/log4j.jar"/>
48 <!-- classpath -->
49 <path id="classpath">
50 <pathelement path="${josm}"/>
51 <pathelement location="${vlcj}"/>
52 <!--Add extra libraries -->
53 <pathelement location="${jna}"/>
54 <pathelement location="${platform}"/>
55 <pathelement location="${log4j}"/>
56 </path>
57 <!--
58 **********************************************************
59 ** compile - complies the source tree
60 ** Overrides the target from build-common.xml
61 **********************************************************
62 -->
63 <target name="compile" depends="init">
64 <echo message="compiling sources for ${plugin.jar} ..."/>
65 <javac srcdir="src" classpathref="classpath" debug="true" destdir="${plugin.build.dir}">
66 <compilerarg value="-Xlint:deprecation"/>
67 <compilerarg value="-Xlint:unchecked"/>
68 </javac>
69 </target>
70
71 <!--
72 **********************************************************
73 ** dist - creates the plugin jar
74 **********************************************************
75 -->
76 <target name="dist" depends="compile,revision">
77 <echo message="creating ${ant.project.name}.jar ... "/>
78 <copy todir="${plugin.build.dir}/resources">
79 <fileset dir="resources"/>
80 </copy>
81 <copy todir="${plugin.build.dir}/images">
82 <fileset dir="images"/>
83 </copy>
84 <copy todir="${plugin.build.dir}/data">
85 <fileset dir="data"/>
86 </copy>
87 <copy todir="${plugin.build.dir}">
88 <fileset dir=".">
89 <include name="README"/>
90 <include name="LICENSE"/>
91 </fileset>
92 </copy>
93 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
94 <!--
95 ************************************************
96 ** configure these properties. Most of them will be copied to the plugins
97 ** manifest file. Property values will also show up in the list available
98 ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
99 **
100 ************************************************
101 -->
102 <manifest>
103 <attribute name="Author" value="Matthias Meißer"/>
104 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.videomapping.VideoPlugin"/>
105 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
106 <attribute name="Plugin-Description" value="(This Plugin is currently work in progress!!!) Links and syncs a georeferenced video against a GPS track, to use it for identify visible objects."/>
107 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/VideoMapping"/>
108 <attribute name="Plugin-Icon" value="images/videomapping.png"/>
109 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
110 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
111 </manifest>
112 <!--added to bundle libs-->
113 <zipfileset src="${jna}"/>
114 <zipfileset src="${log4j}"/>
115 <zipfileset src="${platform}"/>
116 <zipfileset src="${vlcj}"/>
117 </jar>
118 </target>
119</project>
Note: See TracBrowser for help on using the repository browser.