-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
25 lines (25 loc) · 1.38 KB
/
Copy pathpom.xml
File metadata and controls
25 lines (25 loc) · 1.38 KB
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
<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>sidewalks</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<plugin.test.dir>src/test</plugin.test.dir>
<plugin.src.dir>src/main/java</plugin.src.dir>
<plugin.resources.dir>src/main/resources</plugin.resources.dir>
<plugin.main.version>19017</plugin.main.version>
<!--<plugin.compile.version>19017</plugin.compile.version>-->
<java.lang.version>17</java.lang.version>
<plugin.minimum.java.version>${java.lang.version}</plugin.minimum.java.version>
<plugin.canloadatruntime>true</plugin.canloadatruntime>
<plugin.author>Taylor Smock <tsmock@meta.com></plugin.author>
<plugin.class>org.openstreetmap.josm.plugins.mapwithai.street_level.MapWithAIStreetLevelPlugin</plugin.class>
<plugin.link>https://github.com/tsmock/sidewalks</plugin.link>
<plugin.description>Various utilities to make creating sidewalks easier</plugin.description>
</properties>
</project>