-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.xml
25 lines (21 loc) · 1.11 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
<?xml version="1.0" encoding="utf-8"?>
<project name="gridify" default="dist" basedir=".">
<property name="commit.message" value="Commit message"/>
<property name="plugin.main.version" value="19044"/>
<property name="plugin.author" value="Jeroen Hoek"/>
<property name="plugin.class" value="nl.jeroenhoek.josm.gridify.GridifyPlugin"/>
<property name="plugin.description" value="Generates grids."/>
<property name="plugin.icon" value="images/gridify.png"/>
<property name="plugin.link" value="https://github.com/JOSM/gridify"/>
<property name="plugin.canloadatruntime" value="true"/>
<import file="../build-common.xml"/>
<exec dir="." executable="git" outputproperty="last-commit-ts">
<arg line="log -1 --pretty=format:%ct"/>
</exec>
<target name="additional-manifest">
<manifest file="MANIFEST" mode="update">
<attribute name="Plugin-Version" value="${last-commit-ts}"/>
<attribute name="14945_Plugin-Url" value="1606242219;https://github.com/JOSM/gridify/releases/download/v1.4.2/gridify.jar"/>
</manifest>
</target>
</project>