[36282] | 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>
|
---|
[36325] | 7 | <version>SNAPSHOT</version>
|
---|
[36282] | 8 | </parent>
|
---|
| 9 | <artifactId>SeaChartEditor</artifactId>
|
---|
| 10 |
|
---|
| 11 | <url>${plugin.link}</url>
|
---|
| 12 | <developers>
|
---|
| 13 | <developer>
|
---|
| 14 | <name>Malcolm Herring</name>
|
---|
| 15 | </developer>
|
---|
| 16 | </developers>
|
---|
| 17 | <properties>
|
---|
| 18 | <plugin.src.dir>src</plugin.src.dir>
|
---|
[36344] | 19 | <plugin.main.version>19044</plugin.main.version>
|
---|
[36282] | 20 | <plugin.author>Malcolm Herring</plugin.author>
|
---|
| 21 | <plugin.class>scedit.SCedit</plugin.class>
|
---|
| 22 | <plugin.description>Edit features for Sea Charts</plugin.description>
|
---|
| 23 | <plugin.icon>images/SC.png</plugin.icon>
|
---|
| 24 | <plugin.link>https://openseamap.org/</plugin.link>
|
---|
| 25 | <plugin.requires>seachart</plugin.requires>
|
---|
| 26 | </properties>
|
---|
| 27 | <dependencies>
|
---|
| 28 | <dependency>
|
---|
| 29 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
---|
| 30 | <artifactId>SeaChart</artifactId>
|
---|
[36325] | 31 | <version>SNAPSHOT</version>
|
---|
[36282] | 32 | <scope>provided</scope>
|
---|
| 33 | </dependency>
|
---|
| 34 | </dependencies>
|
---|
| 35 | <build>
|
---|
| 36 | <plugins>
|
---|
| 37 | <plugin>
|
---|
| 38 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 39 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 40 | <configuration>
|
---|
| 41 | <archive>
|
---|
| 42 | <manifestEntries>
|
---|
| 43 | <Plugin-Link>${plugin.link}</Plugin-Link>
|
---|
| 44 | <Plugin-Icon>${plugin.icon}</Plugin-Icon>
|
---|
| 45 | <Plugin-Requires>${plugin.requires}</Plugin-Requires>
|
---|
| 46 | </manifestEntries>
|
---|
| 47 | </archive>
|
---|
| 48 | </configuration>
|
---|
| 49 | </plugin>
|
---|
| 50 | </plugins>
|
---|
| 51 | </build>
|
---|
| 52 | </project>
|
---|