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

Last change on this file since 36215 was 35958, checked in by taylor.smock, 3 years ago

geotools: Fix #21995 by removing Jackson and putting Jackson in its own plugin

  • Property svn:eol-style set to native
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="10580"/>
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.