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

Last change on this file since 36325 was 36325, checked in by taylor.smock, 3 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.3 KB
RevLine 
[36282]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>
[36325]7 <version>SNAPSHOT</version>
[36282]8 </parent>
9 <artifactId>jackson</artifactId>
10
11 <developers>
12 <developer>
13 <name>Taylor Smock</name>
14 <id>taylor.smock</id>
15 <email>tsmock@meta.com</email>
16 </developer>
17 </developers>
18 <properties>
19 <plugin.src.dir>src</plugin.src.dir>
20 <plugin.main.version>19044</plugin.main.version>
21 <plugin.author>Taylor Smock</plugin.author>
22 <plugin.class>org.openstreetmap.josm.plugins.jackson.JacksonPlugin</plugin.class>
23 <plugin.description>Provides Jackson JSON library. Not meant to be installed directly by users, but rather as a dependency for other plugins.</plugin.description>
24 </properties>
25
26 <dependencies>
27 <dependency>
28 <groupId>com.fasterxml.jackson.core</groupId>
29 <artifactId>jackson-core</artifactId>
30 <version>2.17.1</version>
31 </dependency>
32 </dependencies>
33</project>
Note: See TracBrowser for help on using the repository browser.