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>FixAddresses</artifactId>
|
---|
10 |
|
---|
11 | <url>${plugin.link}</url>
|
---|
12 | <developers>
|
---|
13 | <developer>
|
---|
14 | <name>Oliver Wieland</name>
|
---|
15 | </developer>
|
---|
16 | </developers>
|
---|
17 | <properties>
|
---|
18 | <plugin.src.dir>src</plugin.src.dir>
|
---|
19 | <plugin.main.version>19044</plugin.main.version>
|
---|
20 | <plugin.author>Oliver Wieland</plugin.author>
|
---|
21 | <plugin.class>org.openstreetmap.josm.plugins.fixAddresses.FixAddressesPlugin</plugin.class>
|
---|
22 | <plugin.description>Finds and fixes invalid street addresses in a comfortable way.</plugin.description>
|
---|
23 | <plugin.icon>images/fixaddresses.png</plugin.icon>
|
---|
24 | <plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/FixAddresses</plugin.link>
|
---|
25 | </properties>
|
---|
26 | <build>
|
---|
27 | <plugins>
|
---|
28 | <plugin>
|
---|
29 | <groupId>org.apache.maven.plugins</groupId>
|
---|
30 | <artifactId>maven-jar-plugin</artifactId>
|
---|
31 | <configuration>
|
---|
32 | <archive>
|
---|
33 | <manifestEntries>
|
---|
34 | <Plugin-Link>${plugin.link}</Plugin-Link>
|
---|
35 | <Plugin-Icon>${plugin.icon}</Plugin-Icon>
|
---|
36 | </manifestEntries>
|
---|
37 | </archive>
|
---|
38 | </configuration>
|
---|
39 | </plugin>
|
---|
40 | </plugins>
|
---|
41 | </build>
|
---|
42 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.