-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
136 lines (135 loc) · 5.11 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<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>areaselector</artifactId>
<url>${plugin.link}</url>
<developers>
<developer>
<name>Paul Woelfel</name>
</developer>
<developer>
<name>Thomas Konrad</name>
</developer>
</developers>
<properties>
<plugin.src.dir>src</plugin.src.dir>
<plugin.main.version>19044</plugin.main.version>
<plugin.author>Paul Woelfel, Thomas Konrad </plugin.author>
<plugin.class>org.openstreetmap.josm.plugins.areaselector.AreaSelectorPlugin</plugin.class>
<plugin.description>Allows selection of areas in an layer and automatic creation of a way as polygon. Built to ease mapping of building from background layers. Optimized for basemap.at.</plugin.description>
<plugin.icon>images/mapmode/areaselector.png</plugin.icon>
<plugin.link>https://github.com/JOSM/areaselector</plugin.link>
<plugin.requires>apache-commons;austriaaddresshelper;ejml;log4j</plugin.requires>
<plugin.canloadatruntime>true</plugin.canloadatruntime>
<boofcv.version>1.1.6</boofcv.version>
</properties>
<dependencies>
<dependency>
<groupId>org.boofcv</groupId>
<artifactId>boofcv-core</artifactId>
<version>${boofcv.version}</version>
<!-- ejml is provided by the JOSM ejml plugin -->
<exclusions>
<exclusion>
<groupId>org.ejml</groupId>
<artifactId>ejml-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.ejml</groupId>
<artifactId>ejml-fdense</artifactId>
</exclusion>
<exclusion>
<groupId>org.ejml</groupId>
<artifactId>ejml-ddense</artifactId>
</exclusion>
<exclusion>
<groupId>org.ejml</groupId>
<artifactId>ejml-simple</artifactId>
</exclusion>
<exclusion>
<groupId>org.ejml</groupId>
<artifactId>ejml-dsparse</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.boofcv</groupId>
<artifactId>boofcv-feature</artifactId>
<version>${boofcv.version}</version>
</dependency>
<dependency>
<groupId>org.boofcv</groupId>
<artifactId>boofcv-swing</artifactId>
<version>${boofcv.version}</version>
</dependency>
<dependency>
<groupId>org.boofcv</groupId>
<artifactId>boofcv-ip</artifactId>
<version>${boofcv.version}</version>
</dependency>
<dependency>
<groupId>org.boofcv</groupId>
<artifactId>boofcv-io</artifactId>
<version>${boofcv.version}</version>
<!-- from apache-commons plugin -->
<exclusions>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>
<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>austriaaddresshelper</artifactId>
<version>SNAPSHOT</version>
<scope>provided</scope>
</dependency>
-->
<dependency>
<groupId>org.openstreetmap.josm.plugins</groupId>
<artifactId>ejml</artifactId>
<version>SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openstreetmap.josm.plugins</groupId>
<artifactId>log4j</artifactId>
<version>SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- from apache-commons plugin -->
<!--<exclude org="org.apache.commons" module="commons-compress"/>-->
<!--<exclude org="commons-io" module="commons-io"/>-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Plugin-Link>${plugin.link}</Plugin-Link>
<Plugin-Icon>${plugin.icon}</Plugin-Icon>
<Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
<Plugin-Requires>${plugin.requires}</Plugin-Requires>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>