source: osm/applications/editors/josm/plugins/jaxb/pom.xml@ 36349

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

Dependency updates

Most plugins have been moved to require a minimum version of r19044 (mostly for
Java 11+ build reasons).

File size: 2.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>jaxb</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.jaxb.JaxbPlugin</plugin.class>
21 <plugin.description>Provides the JAXB 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.early>true</plugin.early>
23 <plugin.stage>4</plugin.stage>
24 </properties>
25
26 <dependencies>
27 <dependency>
28 <groupId>org.glassfish.jaxb</groupId>
29 <artifactId>jaxb-runtime</artifactId>
30 <version>2.3.2</version>
31 </dependency>
32 <dependency>
33 <groupId>jakarta.xml.bind</groupId>
34 <artifactId>jakarta.xml.bind-api</artifactId>
35 <version>2.3.2</version>
36 </dependency>
37 <dependency>
38 <groupId>com.sun.xml.bind</groupId>
39 <artifactId>jaxb-impl</artifactId>
40 <version>2.3.2</version>
41 </dependency>
42 </dependencies>
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-jar-plugin</artifactId>
48 <configuration>
49 <archive>
50 <manifestEntries>
51 <Plugin-Early>${plugin.early}</Plugin-Early>
52 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
53 </manifestEntries>
54 </archive>
55 </configuration>
56 </plugin>
57 </plugins>
58 </build>
59</project>
Note: See TracBrowser for help on using the repository browser.