source: osm/applications/editors/josm/plugins/imageio/build.xml@ 36093

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

See #14361: Support for image/webp

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="ImageIO" 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 <!-- 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="18464"/>
10
11 <property name="plugin.author" value="Taylor Smock"/>
12 <property name="plugin.class" value="org.openstreetmap.josm.plugins.imageio.ImageIOPlugin"/>
13 <property name="plugin.description" value="Enable additional image types such as webp (each image type must be enabled in preferences)"/>
14 <!--<property name="plugin.icon" value=""/>-->
15 <!--<property name="plugin.link" value=""/>-->
16 <property name="plugin.canloadatruntime" value="true"/>
17 <property name="plugin.minimum.java.version" value="17"/>
18 <property name="java.lang.version" value="17"/>
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.