source: osm/applications/editors/josm/plugins/pmtiles/build.xml@ 36349

Last change on this file since 36349 was 36349, checked in by taylor.smock, 2 months ago

Dependency updates

Most plugins have been moved to require a minimum version of r19044 (mostly for
Java 11+ build reasons).

File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="pmtiles" default="dist" basedir=".">
3 <property name="plugin.src.dir" value="src/main/java"/>
4 <property name="plugin.test.dir" location="src/test/java"/>
5 <property name="plugin.resources.dir" value="src/main/resources"/>
6
7 <!-- enter the SVN commit message -->
8 <property name="commit.message" value="Commit message"/>
9 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
10 <property name="plugin.main.version" value="19044"/>
11
12 <!-- Configure these properties (replace "..." accordingly).
13 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
14 -->
15 <property name="plugin.author" value="Taylor Smock"/>
16 <property name="plugin.class" value="org.openstreetmap.josm.plugins.pmtiles.PMTilesPlugin"/>
17 <property name="plugin.description" value="A plugin for pmtile support"/>
18 <property name="plugin.minimum.java.version" value="17"/>
19 <property name="plugin.canloadatruntime" value="true"/>
20 <property name="plugin.requires" value="apache-commons"/>
21 <property name="java.lang.version" value="17"/>
22
23 <!-- ** include targets that all plugins have in common ** -->
24 <import file="../build-common.xml"/>
25 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
26 <include name="apache-commons.jar"/>
27 </fileset>
28</project>
Note: See TracBrowser for help on using the repository browser.