source: osm/applications/editors/josm/plugins/native-password-manager/build.xml@ 33413

Last change on this file since 33413 was 32680, checked in by donvip, 8 years ago

see #josm11390 - switch to Java 8

  • Property svn:mime-type set to text/xml
File size: 1.2 KB
RevLine 
[26341]1<?xml version="1.0" encoding="utf-8"?>
[26335]2<project name="native_password_manager" default="dist" basedir=".">
3
4 <!-- enter the SVN commit message -->
[26341]5 <property name="commit.message" value="Commit message"/>
[26335]6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
[32680]7 <property name="plugin.main.version" value="10580"/>
[30822]8 <property name="plugin.author" value="Paul Hartmann"/>
9 <property name="plugin.class" value="org.openstreetmap.josm.plugins.npm.NPMPlugin"/>
10 <property name="plugin.description" value="Use your system''s password manager to store the API username and password. (KWallet and gnome-keyring are supported.)"/>
11 <property name="plugin.icon" value="images/lock24x24.png"/>
[31923]12 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Native_Password_Manager"/>
[30822]13 <property name="plugin.requires" value="jna"/>
[26335]14
15 <!--
16 **********************************************************
[26341]17 ** include targets that all plugins have in common
[26335]18 **********************************************************
19 -->
[26341]20 <import file="../build-common.xml"/>
[26335]21
[30822]22 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
23 <include name="jna.jar"/>
24 </fileset>
25
[26335]26</project>
Note: See TracBrowser for help on using the repository browser.