source: osm/applications/editors/josm/plugins/imagery_cachexport/pom.xml@ 36353

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

Dependency updates

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

File size: 1.7 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.openstreetmap.josm.plugins</groupId>
6 <artifactId>plugin-root</artifactId>
7 <version>SNAPSHOT</version>
8 </parent>
9 <artifactId>imagery_cachexport</artifactId>
10
11 <developers>
12 <developer>
13 <id>holgermappt</id>
14 </developer>
15 </developers>
16 <properties>
17 <plugin.src.dir>src</plugin.src.dir>
18 <plugin.main.version>19044</plugin.main.version>
19 <plugin.author>holgermappt</plugin.author>
20 <plugin.class>org.openstreetmap.josm.plugins.imagery_cachexport.ImageryCacheExportPlugin</plugin.class>
21 <plugin.description>Export tiles from the imagery layer cache into the file system.</plugin.description>
22 <plugin.icon>images/imageryexport.png</plugin.icon>
23 <plugin.canloadatruntime>true</plugin.canloadatruntime>
24 </properties>
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-jar-plugin</artifactId>
30 <configuration>
31 <archive>
32 <manifestEntries>
33 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
34 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
35 </manifestEntries>
36 </archive>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41</project>
Note: See TracBrowser for help on using the repository browser.