source: osm/applications/editors/josm/plugins/OsmInspectorPlugin/pom.xml@ 36325

Last change on this file since 36325 was 36325, checked in by taylor.smock, 4 months ago

See #23875: Use SNAPSHOT instead of 1.0-SNAPSHOT since that is what our scripts currently publish

This should fix the Jenkins build for plugins.

Note: Maven warns that this may break in the future, in which case we'll have to
change our processes.

File size: 3.2 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>OsmInspectorPlugin</artifactId>
10
11 <developers>
12 <developer>
13 <name>Nikhil Shirahatti</name>
14 </developer>
15 </developers>
16 <properties>
17 <plugin.src.dir>src</plugin.src.dir>
18 <plugin.main.version>14153</plugin.main.version>
19 <plugin.author>Nikhil Shirahatti</plugin.author>
20 <plugin.class>org.openstreetmap.josm.plugins.osminspector.OsmInspectorPlugin</plugin.class>
21 <plugin.description>Bring in errors from Osm Inspector and display it on the current JOSM bounding box</plugin.description>
22 <plugin.icon>images/osmInspector.jpg</plugin.icon>
23 <plugin.requires>jts;geotools</plugin.requires>
24 <java.lang.version>11</java.lang.version>
25 </properties>
26 <dependencies>
27 <dependency>
28 <groupId>org.openstreetmap.josm.plugins</groupId>
29 <artifactId>jts</artifactId>
30 <version>SNAPSHOT</version>
31 <scope>provided</scope>
32 </dependency>
33 <dependency>
34 <groupId>org.openstreetmap.josm.plugins</groupId>
35 <artifactId>geotools</artifactId>
36 <version>SNAPSHOT</version>
37 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>org.geotools</groupId>
41 <artifactId>gt-app-schema-resolver</artifactId>
42 <version>${geotools.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>org.geotools</groupId>
46 <artifactId>gt-cql</artifactId>
47 <version>${geotools.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.geotools</groupId>
51 <artifactId>gt-render</artifactId>
52 <version>${geotools.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>org.geotools</groupId>
56 <artifactId>gt-wfs-ng</artifactId>
57 <version>${geotools.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.geotools</groupId>
61 <artifactId>gt-xml</artifactId>
62 <version>${geotools.version}</version>
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>${java.lang.version}</Plugin-Minimum-Java-Version>
74 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
75 <Plugin-Requires>${plugin.requires}</Plugin-Requires>
76 </manifestEntries>
77 </archive>
78 </configuration>
79 </plugin>
80 </plugins>
81 </build>
82</project>
Note: See TracBrowser for help on using the repository browser.