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>sds</artifactId>
|
---|
10 |
|
---|
11 | <developers>
|
---|
12 | <developer>
|
---|
13 | <name>Frederik Ramm</name>
|
---|
14 | </developer>
|
---|
15 | </developers>
|
---|
16 | <properties>
|
---|
17 | <plugin.src.dir>src</plugin.src.dir>
|
---|
18 | <plugin.main.version>19044</plugin.main.version>
|
---|
19 | <plugin.author>Frederik Ramm</plugin.author>
|
---|
20 | <plugin.class>org.openstreetmap.hot.sds.SeparateDataStorePlugin</plugin.class>
|
---|
21 | <plugin.description>Loads data from SDS</plugin.description>
|
---|
22 | <plugin.icon>images/sds.png</plugin.icon>
|
---|
23 | </properties>
|
---|
24 | <build>
|
---|
25 | <plugins>
|
---|
26 | <plugin>
|
---|
27 | <groupId>org.apache.maven.plugins</groupId>
|
---|
28 | <artifactId>maven-jar-plugin</artifactId>
|
---|
29 | <configuration>
|
---|
30 | <archive>
|
---|
31 | <manifestEntries>
|
---|
32 | <Plugin-Icon>${plugin.icon}</Plugin-Icon>
|
---|
33 | </manifestEntries>
|
---|
34 | </archive>
|
---|
35 | </configuration>
|
---|
36 | </plugin>
|
---|
37 | </plugins>
|
---|
38 | </build>
|
---|
39 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.