Last change
on this file since 29832 was 29778, checked in by akks, 11 years ago |
[josm_plugins]: see #josm6355 - Move most of the other plugins to suitable menus, add Netbeans projects
|
-
Property svn:mime-type
set to
text/xml
|
File size:
1.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="michigan_left" default="dist" basedir=".">
|
---|
31 | <!-- enter the SVN commit message -->
|
---|
32 | <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
|
---|
33 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
34 | <property name="plugin.main.version" value="6082"/>
|
---|
35 |
|
---|
36 | <!-- Configure these properties (replace "..." accordingly).
|
---|
37 | See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
|
---|
38 | -->
|
---|
39 | <property name="plugin.author" value="Nakor"/>
|
---|
40 | <property name="plugin.class" value="MichiganLeft.MichiganLeft"/>
|
---|
41 | <property name="plugin.description" value="Adds no left turn for sets of 4 or 5 ways"/>
|
---|
42 | <property name="plugin.icon" value="images/michigan_left.png"/>
|
---|
43 | <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/MichiganLeft"/>
|
---|
44 |
|
---|
45 | <!-- ** include targets that all plugins have in common ** -->
|
---|
46 | <import file="../build-common.xml"/>
|
---|
47 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.