Last change
on this file since 36184 was 36184, checked in by taylor.smock, 13 months ago |
See #23218: geotools now requires Java 11 as the minimum Java Runtime version
|
-
Property svn:eol-style
set to
native
-
Property svn:mime-type
set to
text/xml
|
File size:
1.3 KB
|
Line | |
---|
1 | <?xml version="1.0" encoding="UTF-8"?>
|
---|
2 | <project name="ImportImagePlugin" default="dist" basedir=".">
|
---|
3 |
|
---|
4 | <!-- enter the SVN commit message -->
|
---|
5 | <property name="commit.message" value="use consistent plugin name (don't mix up the words)" />
|
---|
6 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
7 | <property name="plugin.main.version" value="14153" />
|
---|
8 |
|
---|
9 | <property name="plugin.author" value="Christoph Beekmans, Fabian Kowitz, Anna Robaszkiewicz, Oliver Kuhn, Martin Ulitzny"/>
|
---|
10 | <property name="plugin.class" value="org.openstreetmap.josm.plugins.ImportImagePlugin.ImportImagePlugin"/>
|
---|
11 | <property name="plugin.description" value="Plugin for importing spatial referenced images"/>
|
---|
12 | <property name="plugin.icon" value="images/layericon.png"/>
|
---|
13 | <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/ImportImagePlugin"/>
|
---|
14 | <property name="plugin.requires" value="jts;ejml;geotools"/>
|
---|
15 | <property name="plugin.minimum.java.version" value="11"/>
|
---|
16 |
|
---|
17 | <!-- ** include targets that all plugins have in common ** -->
|
---|
18 | <import file="../build-common.xml"/>
|
---|
19 |
|
---|
20 | <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
|
---|
21 | <include name="jts.jar"/>
|
---|
22 | <include name="ejml.jar"/>
|
---|
23 | <include name="geotools.jar"/>
|
---|
24 | </fileset>
|
---|
25 |
|
---|
26 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.