source: osm/applications/editors/josm/plugins/imageio/pom.xml@ 36348

Last change on this file since 36348 was 36325, checked in by taylor.smock, 5 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: 1.9 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>imageio</artifactId>
10
11 <developers>
12 <developer>
13 <id>taylor.smock</id>
14 <name>Taylor Smock</name>
15 <email>tsmock@meta.com</email>
16 </developer>
17 </developers>
18 <properties>
19 <plugin.src.dir>src/main/java</plugin.src.dir>
20 <plugin.test.dir>src/test/java</plugin.test.dir>
21 <plugin.resources.dir>src/main/resources</plugin.resources.dir>
22 <plugin.main.version>18877</plugin.main.version>
23
24 <plugin.author>Taylor Smock</plugin.author>
25 <plugin.class>org.openstreetmap.josm.plugins.imageio.ImageIOPlugin</plugin.class>
26 <plugin.description>Enable additional image types such as webp (each image type must be enabled in preferences)</plugin.description>
27 <plugin.canloadatruntime>true</plugin.canloadatruntime>
28 <java.lang.version>17</java.lang.version>
29 </properties>
30 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-jar-plugin</artifactId>
35 <configuration>
36 <archive>
37 <manifestEntries>
38 <Plugin-Minimum-Java-Version>${java.lang.version}</Plugin-Minimum-Java-Version>
39 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
40 </manifestEntries>
41 </archive>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46</project>
Note: See TracBrowser for help on using the repository browser.