-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
90 lines (88 loc) · 3.87 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.openstreetmap.josm.plugins</groupId>
<artifactId>plugin-root</artifactId>
<version>SNAPSHOT</version>
</parent>
<artifactId>routing2</artifactId>
<url>${plugin.link}</url>
<properties>
<java.lang.version>21</java.lang.version>
<maven.compiler.source>${java.lang.version}</maven.compiler.source>
<maven.compiler.target>${java.lang.version}</maven.compiler.target>
<maven.compiler.release>${java.lang.version}</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<plugin.src.dir>src/main/java</plugin.src.dir>
<plugin.test.dir>src/test/java</plugin.test.dir>
<plugin.main.version>19044</plugin.main.version>
<plugin.author>Taylor Smock</plugin.author>
<plugin.class>org.openstreetmap.josm.plugins.routing2.Routing2Plugin</plugin.class>
<plugin.description>Production-ready routing with valhalla</plugin.description>
<plugin.link>https://github.com/tsmock/routing2</plugin.link>
<plugin.resources.dir>src/main/resources</plugin.resources.dir>
<plugin.requires>apache-commons;pbf</plugin.requires>
<plugin.canloadatruntime>true</plugin.canloadatruntime>
</properties>
<dependencies>
<dependency>
<groupId>org.openstreetmap.josm.plugins</groupId>
<artifactId>apache-commons</artifactId>
<version>SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openstreetmap.josm.plugins</groupId>
<artifactId>pbf</artifactId>
<version>SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<!-- These are optional and/or uncommon -->
<!--
<Plugin-Icon>${plugin.icon}</Plugin-Icon>
-->
<Plugin-Minimum-Java-Version>${java.lang.version}</Plugin-Minimum-Java-Version>
<Plugin-Requires>${plugin.requires}</Plugin-Requires>
<Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
<Plugin-Link>${plugin.link}</Plugin-Link>
<!-- Additional entries: <xxx>_Plugin-Url (doesn't work well with xml) and <lang>_Plugin_Description -->
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>