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

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

Set minimum JOSM version to r19044

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

File size: 2.1 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>junctionchecking</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Jörg Possin</name>
15 </developer>
16 </developers>
17 <properties>
18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19 <plugin.src.dir>src</plugin.src.dir>
20 <plugin.main.version>19044</plugin.main.version>
21 <plugin.author>Jörg Possin</plugin.author>
22 <plugin.class>org.openstreetmap.josm.plugins.JunctionChecker.JunctionCheckerPlugin</plugin.class>
23 <plugin.description>creates a channel digraph and checks a subset of channels if it is a junction or searches in a subset of channels for junctions</plugin.description>
24 <plugin.icon>images/dialogs/junctionchecker.png</plugin.icon>
25 <plugin.link>https://wiki.openstreetmap.org/index.php/JOSM/Plugins/JunctionChecking</plugin.link>
26 </properties>
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-jar-plugin</artifactId>
32 <configuration>
33 <archive>
34 <manifest>
35 <mainClass>org.openstreetmap.josm.plugins.JunctionChecker.commandlineinterface.CLI</mainClass>
36 </manifest>
37 <manifestEntries>
38 <Plugin-Link>${plugin.link}</Plugin-Link>
39 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
40 </manifestEntries>
41 </archive>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46</project>
Note: See TracBrowser for help on using the repository browser.