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>ImportImagePlugin</artifactId>
|
---|
10 |
|
---|
11 | <url>${plugin.link}</url>
|
---|
12 | <developers>
|
---|
13 | <developer>
|
---|
14 | <name>Christoph Beekmans</name>
|
---|
15 | </developer>
|
---|
16 | <developer>
|
---|
17 | <name>Fabian Kowitz</name>
|
---|
18 | </developer>
|
---|
19 | <developer>
|
---|
20 | <name>Anna Robaszkiewicz</name>
|
---|
21 | </developer>
|
---|
22 | <developer>
|
---|
23 | <name>Oliver Kuhn</name>
|
---|
24 | </developer>
|
---|
25 | <developer>
|
---|
26 | <name>Martin Ulitzny</name>
|
---|
27 | </developer>
|
---|
28 | </developers>
|
---|
29 | <properties>
|
---|
30 | <plugin.main.version>14153</plugin.main.version>
|
---|
31 | <plugin.author>Christoph Beekmans, Fabian Kowitz, Anna Robaszkiewicz, Oliver Kuhn, Martin Ulitzny</plugin.author>
|
---|
32 | <plugin.class>org.openstreetmap.josm.plugins.ImportImagePlugin.ImportImagePlugin</plugin.class>
|
---|
33 | <plugin.description>Plugin for importing spatial referenced images</plugin.description>
|
---|
34 | <plugin.icon>images/layericon.png</plugin.icon>
|
---|
35 | <plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/ImportImagePlugin</plugin.link>
|
---|
36 | <plugin.requires>jts;ejml;geotools</plugin.requires>
|
---|
37 | <java.lang.version>11</java.lang.version>
|
---|
38 | </properties>
|
---|
39 | <dependencies>
|
---|
40 | <dependency>
|
---|
41 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
---|
42 | <artifactId>jts</artifactId>
|
---|
43 | <version>SNAPSHOT</version>
|
---|
44 | <scope>provided</scope>
|
---|
45 | </dependency>
|
---|
46 | <dependency>
|
---|
47 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
---|
48 | <artifactId>ejml</artifactId>
|
---|
49 | <version>SNAPSHOT</version>
|
---|
50 | <scope>provided</scope>
|
---|
51 | </dependency>
|
---|
52 | <dependency>
|
---|
53 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
---|
54 | <artifactId>geotools</artifactId>
|
---|
55 | <version>SNAPSHOT</version>
|
---|
56 | <scope>provided</scope>
|
---|
57 | </dependency>
|
---|
58 | </dependencies>
|
---|
59 | <build>
|
---|
60 | <plugins>
|
---|
61 | <plugin>
|
---|
62 | <groupId>org.apache.maven.plugins</groupId>
|
---|
63 | <artifactId>maven-jar-plugin</artifactId>
|
---|
64 | <configuration>
|
---|
65 | <archive>
|
---|
66 | <manifestEntries>
|
---|
67 | <Plugin-Minimum-Java-Version>${java.lang.version}</Plugin-Minimum-Java-Version>
|
---|
68 | <Plugin-Link>${plugin.link}</Plugin-Link>
|
---|
69 | <Plugin-Icon>${plugin.icon}</Plugin-Icon>
|
---|
70 | <Plugin-Requires>${plugin.requires}</Plugin-Requires>
|
---|
71 | </manifestEntries>
|
---|
72 | </archive>
|
---|
73 | </configuration>
|
---|
74 | </plugin>
|
---|
75 | </plugins>
|
---|
76 | </build>
|
---|
77 | </project>
|
---|