[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>routing</artifactId>
|
---|
| 10 |
|
---|
| 11 | <url>${plugin.link}</url>
|
---|
| 12 | <developers>
|
---|
| 13 | <developer>
|
---|
| 14 | <name>Jose Vidal</name>
|
---|
| 15 | <email>vidalfree@gmail.com</email>
|
---|
| 16 | </developer>
|
---|
| 17 | <developer>
|
---|
| 18 | <name>Juangui Jordán</name>
|
---|
| 19 | <email>juangui@gmail.com</email>
|
---|
| 20 | </developer>
|
---|
| 21 | <developer>
|
---|
| 22 | <name>Hassan Sabirin</name>
|
---|
| 23 | <email>hassan.sabirin@gmail.com</email>
|
---|
| 24 | </developer>
|
---|
| 25 | </developers>
|
---|
| 26 | <properties>
|
---|
| 27 | <plugin.src.dir>src</plugin.src.dir>
|
---|
[36304] | 28 | <plugin.main.version>19044</plugin.main.version>
|
---|
[36282] | 29 | <plugin.author><![CDATA[Jose Vidal <vidalfree@gmail.com>, Juangui Jordán <juangui@gmail.com>, Hassan S <hassan.sabirin@gmail.com>]]></plugin.author>
|
---|
| 30 | <plugin.class>com.innovant.josm.plugin.routing.RoutingPlugin</plugin.class>
|
---|
| 31 | <plugin.description>Provides routing capabilities.</plugin.description>
|
---|
| 32 | <plugin.icon>images/preferences/routing.png</plugin.icon>
|
---|
| 33 | <plugin.link>https://wiki.openstreetmap.org/index.php/JOSM/Plugins/Routing</plugin.link>
|
---|
| 34 | </properties>
|
---|
| 35 | <dependencies>
|
---|
| 36 | <dependency>
|
---|
| 37 | <groupId>org.jgrapht</groupId>
|
---|
| 38 | <artifactId>jgrapht-jdk1.5</artifactId>
|
---|
| 39 | <version>0.7.3</version>
|
---|
| 40 | </dependency>
|
---|
| 41 | </dependencies>
|
---|
| 42 | <build>
|
---|
| 43 | <plugins>
|
---|
| 44 | <plugin>
|
---|
| 45 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 46 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 47 | <configuration>
|
---|
| 48 | <archive>
|
---|
| 49 | <manifestEntries>
|
---|
| 50 | <Plugin-Link>${plugin.link}</Plugin-Link>
|
---|
| 51 | <Plugin-Icon>${plugin.icon}</Plugin-Icon>
|
---|
| 52 | </manifestEntries>
|
---|
| 53 | </archive>
|
---|
| 54 | </configuration>
|
---|
| 55 | </plugin>
|
---|
| 56 | </plugins>
|
---|
| 57 | </build>
|
---|
| 58 | </project>
|
---|