source: osm/applications/editors/josm/plugins/public_transport/pom.xml@ 36354

Last change on this file since 36354 was 36345, checked in by taylor.smock, 4 months ago

Set minimum JOSM version to r19044

r19044 was the first Java 11+ only version of JOSM.

File size: 1.6 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>public_transport</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Roland M. Olbricht</name>
15 </developer>
16 </developers>
17 <properties>
18 <plugin.src.dir>src</plugin.src.dir>
19 <plugin.main.version>19044</plugin.main.version>
20 <plugin.author>Roland M. Olbricht</plugin.author>
21 <plugin.class>org.openstreetmap.josm.plugins.public_transport.PublicTransportPlugin</plugin.class>
22 <plugin.description>This plugin simplifies the mapping and editing of public transport routes.</plugin.description>
23 <plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/public_transport</plugin.link>
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-Link>${plugin.link}</Plugin-Link>
34 </manifestEntries>
35 </archive>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40</project>
Note: See TracBrowser for help on using the repository browser.