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

Last change on this file was 36415, checked in by stoecker, 9 months ago

some cleanup

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 913 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="jackson" default="dist" basedir=".">
3
4 <!-- enter the SVN commit message -->
5 <property name="commit.message" value="Commit message"/>
6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
7 <property name="plugin.main.version" value="19044"/>
8
9 <property name="plugin.author" value="Taylor Smock"/>
10 <property name="plugin.class" value="org.openstreetmap.josm.plugins.jackson.JacksonPlugin"/>
11 <property name="plugin.description" value="Provides Jackson JSON library. Not meant to be installed directly by users, but rather as a dependency for other plugins."/>
12
13 <!-- ** include targets that all plugins have in common ** -->
14 <import file="../build-common.xml"/>
15
16 <target name="pre-compile" depends="fetch_dependencies">
17 <!-- include fetch_dependencies task -->
18 </target>
19</project>
Note: See TracBrowser for help on using the repository browser.