source: osm/applications/editors/josm/plugins/cadastre-fr/pom.xml

Last change on this file was 36344, checked in by taylor.smock, 10 days ago

Set minimum JOSM version to r19044

r19044 was the first Java 11+ only version of JOSM.

File size: 3.5 KB
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>cadastre-fr</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <id>Pieren</id>
15 </developer>
16 <developer>
17 <id>Don-vip</id>
18 </developer>
19 </developers>
20 <properties>
21 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22 <plugin.src.dir>src</plugin.src.dir>
23 <plugin.main.version>19044</plugin.main.version>
24 <plugin.author>Pieren;Don-vip</plugin.author>
25 <plugin.class>org.openstreetmap.josm.plugins.fr.cadastre.CadastrePlugin</plugin.class>
26 <plugin.description>A special handler for the French land registry WMS server.</plugin.description>
27 <plugin.icon>images/preferences/cadastrewms.png</plugin.icon>
28 <plugin.link>https://wiki.openstreetmap.org/wiki/FR:JOSM/Fr:Plugin/Cadastre</plugin.link>
29 <plugin.stage>60</plugin.stage>
30 <plugin.requires>apache-commons;ejml;jts;geotools</plugin.requires>
31 <plugin.minimum.java.version>11</plugin.minimum.java.version>
32 </properties>
33 <dependencies>
34 <dependency>
35 <groupId>org.openstreetmap.josm.plugins</groupId>
36 <artifactId>apache-commons</artifactId>
37 <version>SNAPSHOT</version>
38 <scope>provided</scope>
39 </dependency>
40 <!-- We need to override this from the parent pom; otherwise, it will be test only -->
41 <dependency>
42 <groupId>org.apache.commons</groupId>
43 <artifactId>commons-lang3</artifactId>
44 <scope>provided</scope> <!-- provided by the apache-commons plugin -->
45 </dependency>
46 <dependency>
47 <groupId>org.openstreetmap.josm.plugins</groupId>
48 <artifactId>ejml</artifactId>
49 <version>SNAPSHOT</version>
50 <scope>provided</scope>
51 </dependency>
52 <dependency>
53 <groupId>org.openstreetmap.josm.plugins</groupId>
54 <artifactId>jts</artifactId>
55 <version>SNAPSHOT</version>
56 <scope>provided</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.openstreetmap.josm.plugins</groupId>
60 <artifactId>geotools</artifactId>
61 <version>SNAPSHOT</version>
62 <scope>provided</scope>
63 </dependency>
64 </dependencies>
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-jar-plugin</artifactId>
70 <configuration>
71 <archive>
72 <manifestEntries>
73 <Plugin-Minimum-Java-Version>${plugin.minimum.java.version}</Plugin-Minimum-Java-Version>
74 <Plugin-Link>${plugin.link}</Plugin-Link>
75 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
76 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
77 <Plugin-Requires>${plugin.requires}</Plugin-Requires>
78 </manifestEntries>
79 </archive>
80 </configuration>
81 </plugin>
82 </plugins>
83 </build>
84</project>
Note: See TracBrowser for help on using the repository browser.