| 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>opendata-parent</artifactId>
|
|---|
| 7 | <version>1.0-SNAPSHOT</version>
|
|---|
| 8 | </parent>
|
|---|
| 9 | <groupId>org.openstreetmap.josm.plugins.opendata</groupId>
|
|---|
| 10 | <artifactId>fr.paris</artifactId>
|
|---|
| 11 | <properties>
|
|---|
| 12 | <plugin.src.dir>src</plugin.src.dir>
|
|---|
| 13 | </properties>
|
|---|
| 14 | <dependencies>
|
|---|
| 15 | <dependency>
|
|---|
| 16 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
|---|
| 17 | <artifactId>apache-commons</artifactId>
|
|---|
| 18 | <version>1.0-SNAPSHOT</version>
|
|---|
| 19 | <scope>provided</scope>
|
|---|
| 20 | </dependency>
|
|---|
| 21 | <dependency>
|
|---|
| 22 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
|---|
| 23 | <artifactId>geotools</artifactId>
|
|---|
| 24 | <version>1.0-SNAPSHOT</version>
|
|---|
| 25 | <scope>provided</scope>
|
|---|
| 26 | </dependency>
|
|---|
| 27 | <dependency>
|
|---|
| 28 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
|---|
| 29 | <artifactId>opendata</artifactId>
|
|---|
| 30 | <version>1.0-SNAPSHOT</version>
|
|---|
| 31 | <scope>provided</scope>
|
|---|
| 32 | </dependency>
|
|---|
| 33 | </dependencies>
|
|---|
| 34 | <build>
|
|---|
| 35 | <plugins>
|
|---|
| 36 | <plugin>
|
|---|
| 37 | <groupId>org.apache.maven.plugins</groupId>
|
|---|
| 38 | <artifactId>maven-jar-plugin</artifactId>
|
|---|
| 39 | <configuration>
|
|---|
| 40 | <archive>
|
|---|
| 41 | <manifestEntries>
|
|---|
| 42 | <Author>Don-vip</Author>
|
|---|
| 43 | <Module-Class>org.openstreetmap.josm.plugins.opendata.modules.fr.paris.ParisModule</Module-Class>
|
|---|
| 44 | <Module-Date>${version.entry.commit.date}</Module-Date>
|
|---|
| 45 | <Module-Description>Paris</Module-Description>
|
|---|
| 46 | <Module-Icon>images/data.fr.paris_24.png</Module-Icon>
|
|---|
| 47 | <!--<Module-Link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/OpenData/Paris</Module-Link>-->
|
|---|
| 48 | <Module-Version>${version.entry.commit.revision}</Module-Version>
|
|---|
| 49 | </manifestEntries>
|
|---|
| 50 | </archive>
|
|---|
| 51 | </configuration>
|
|---|
| 52 | </plugin>
|
|---|
| 53 | </plugins>
|
|---|
| 54 | </build>
|
|---|
| 55 | </project>
|
|---|