source: osm/applications/editors/josm/plugins/FIT/build.xml

Last change on this file was 36151, checked in by taylor.smock, 16 months ago

Fix #8647: Add Garmin FIT parsing (as a plugin)

Documentation/files used for implementation:

File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="FIT" default="dist" basedir=".">
3 <property name="plugin.src.dir" value="src/main/java"/>
4 <property name="plugin.test.dir" location="src/test"/>
5 <property name="plugin.resources.dir" value="src/main/resources"/>
6 <!-- enter the SVN commit message -->
7 <property name="commit.message" value="Commit message"/>
8 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
9 <property name="plugin.main.version" value="10580"/>
10
11 <property name="plugin.author" value="Taylor Smock"/>
12 <property name="plugin.class" value="org.openstreetmap.josm.plugins.fit.FitPlugin"/>
13 <property name="plugin.description" value="Garmin FIT files in JOSM"/>
14 <!--<property name="plugin.icon" value="..."/>-->
15 <!--<property name="plugin.link" value="..."/>-->
16 <property name="plugin.minimum.java.version" value="21"/>
17 <property name="java.lang.version" value="21"/>
18 <property name="plugin.canloadatruntime" value="true"/>
19
20 <!-- ** include targets that all plugins have in common ** -->
21 <import file="../build-common.xml"/>
22</project>
Note: See TracBrowser for help on using the repository browser.