-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
37 lines (33 loc) · 1.27 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<project default="compile">
<target name="compile">
<mkdir dir="bin" />
<javac srcdir="src" destdir="bin">
<classpath>
<pathelement path="/home/martin/josm-tested.jar" />
</classpath>
</javac>
</target>
<target name="clean">
<delete dir="bin"/>
<delete file="freemap-gallery.jar"/>
</target>
<target name="jar" depends="compile">
<jar destfile="freemap-gallery.jar" basedir="bin" includes="**/*">
<fileset dir=".">
<include name="images/*" />
</fileset>
<manifest>
<attribute name="Plugin-Mainversion" value="18494" />
<attribute name="Plugin-Version" value="1" />
<attribute name="Plugin-Class" value="sk.freemap.josm.plugins.gallery.FreemapGalleryPlugin" />
<attribute name="Plugin-Description"
value="Adds dynamic Freemap.sk Gallery layer to Imagery to view photos from zoom 14" />
<attribute name="Author" value="Martin Ždila <[email protected]>" />
<attribute name="Plugin-Minimum-Java-Version" value="17" />
<attribute name="Plugin-Link"
value="https://github.com/FreemapSlovakia/freemap-gallery-josm-plugin/" />
<attribute name="Plugin-Icon" value="images/icon.svg" />
</manifest>
</jar>
</target>
</project>