source: osm/applications/editors/josm/plugins/geotools/pom.xml

Last change on this file was 36325, checked in by taylor.smock, 7 weeks 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: 5.3 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>geotools</artifactId>
10
11 <developers>
12 <developer>
13 <id>Don-vip</id>
14 </developer>
15 </developers>
16 <properties>
17 <plugin.src.dir>src</plugin.src.dir>
18 <plugin.main.version>19044</plugin.main.version>
19 <plugin.author>Don-vip</plugin.author>
20 <plugin.class>org.openstreetmap.josm.plugins.geotools.GeoToolsPlugin</plugin.class>
21 <plugin.description>Provides parts of the GeoTools library for other JOSM plugins. Not meant to be installed directly by users, but rather as a dependency for other plugins.</plugin.description>
22 <plugin.icon>images/compass.png</plugin.icon>
23 <plugin.canloadatruntime>true</plugin.canloadatruntime>
24 <plugin.requires>apache-commons;ejml;jackson;jaxb;jts</plugin.requires>
25 <plugin.stage>20</plugin.stage>
26 </properties>
27 <dependencies>
28 <dependency>
29 <groupId>org.openstreetmap.josm.plugins</groupId>
30 <artifactId>apache-commons</artifactId>
31 <version>SNAPSHOT</version>
32 <scope>provided</scope>
33 </dependency>
34 <dependency>
35 <groupId>org.openstreetmap.josm.plugins</groupId>
36 <artifactId>ejml</artifactId>
37 <version>SNAPSHOT</version>
38 <scope>provided</scope>
39 </dependency>
40 <dependency>
41 <groupId>org.openstreetmap.josm.plugins</groupId>
42 <artifactId>jackson</artifactId>
43 <version>SNAPSHOT</version>
44 <scope>provided</scope>
45 </dependency>
46 <dependency>
47 <groupId>org.openstreetmap.josm.plugins</groupId>
48 <artifactId>jaxb</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 <!-- FIXME: Check excludes -->
59 <dependency>
60 <groupId>org.geotools</groupId>
61 <artifactId>gt-coverage</artifactId>
62 <version>${geotools.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>org.geotools</groupId>
66 <artifactId>gt-coverage-api</artifactId>
67 <version>${geotools.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.geotools</groupId>
71 <artifactId>gt-epsg-extension</artifactId>
72 <version>${geotools.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.geotools</groupId>
76 <artifactId>gt-epsg-hsql</artifactId>
77 <version>${geotools.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.geotools</groupId>
81 <artifactId>gt-geotiff</artifactId>
82 <version>${geotools.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.geotools</groupId>
86 <artifactId>gt-main</artifactId>
87 <version>${geotools.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.geotools</groupId>
91 <artifactId>gt-metadata</artifactId>
92 <version>${geotools.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>org.geotools</groupId>
96 <artifactId>gt-api</artifactId>
97 <version>${geotools.version}</version>
98 </dependency>
99 <dependency>
100 <groupId>org.geotools</groupId>
101 <artifactId>gt-referencing</artifactId>
102 <version>${geotools.version}</version>
103 </dependency>
104 <dependency>
105 <groupId>org.geotools</groupId>
106 <artifactId>gt-shapefile</artifactId>
107 <version>${geotools.version}</version>
108 </dependency>
109 <dependency>
110 <groupId>org.geotools</groupId>
111 <artifactId>gt-geopkg</artifactId>
112 <version>${geotools.version}</version>
113 </dependency>
114 </dependencies>
115 <build>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-jar-plugin</artifactId>
120 <configuration>
121 <archive>
122 <manifestEntries>
123 <Plugin-Minimum-Java-Version>${plugin.minimum.java.version}</Plugin-Minimum-Java-Version>
124 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
125 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
126 <Plugin-Requires>${plugin.requires}</Plugin-Requires>
127 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
128 </manifestEntries>
129 </archive>
130 </configuration>
131 </plugin>
132 </plugins>
133 </build>
134</project>
Note: See TracBrowser for help on using the repository browser.