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

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

Drop most ivy files

This is mostly to ensure there is one place for dependency updates to occur, not
two.

lwjgl and geotools did not have their ivy files dropped, since there was a diff
between ivy and maven dependency builds. This is most likely due to dependency
exclusions. The geotools pom.xml now has all the exclusions from the ivy.xml file
now.

jts also had a diff between ivy and maven dependency builds, but the missing
files were test files (specifically, *Test.class) and test related files.

This additionally bumps the minimum JOSM version for everything that had an
ivy.xml file to r19044 for rebuild purposes (r19044 is Java 11+ only).

File size: 2.1 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>pbf</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <id>Don-vip</id>
15 </developer>
16 </developers>
17 <properties>
18 <plugin.src.dir>src</plugin.src.dir>
19 <plugin.main.version>19044</plugin.main.version>
20 <plugin.author>Don-vip</plugin.author>
21 <plugin.class>org.openstreetmap.josm.plugins.pbf.PbfPlugin</plugin.class>
22 <plugin.description>Import/export OSM data in PBF format</plugin.description>
23 <plugin.canloadatruntime>true</plugin.canloadatruntime>
24 <plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/PBF</plugin.link>
25 </properties>
26 <dependencies>
27 <dependency>
28 <groupId>com.google.protobuf</groupId>
29 <artifactId>protobuf-java</artifactId>
30 <version>3.25.5</version>
31 </dependency>
32 <dependency>
33 <groupId>org.openstreetmap.pbf</groupId>
34 <artifactId>osmpbf</artifactId>
35 <version>1.5.0</version>
36 </dependency>
37 </dependencies>
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-jar-plugin</artifactId>
43 <configuration>
44 <archive>
45 <manifestEntries>
46 <Plugin-Link>${plugin.link}</Plugin-Link>
47 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
48 </manifestEntries>
49 </archive>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54</project>
Note: See TracBrowser for help on using the repository browser.