You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.7 KiB
82 lines
2.7 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>org.leolo</groupId> |
|
<artifactId>OSM-extract</artifactId> |
|
<version>1.0-SNAPSHOT</version> |
|
<build> |
|
<sourceDirectory>src/main/java</sourceDirectory> |
|
<testSourceDirectory>src/test/java</testSourceDirectory> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
</resource> |
|
</resources> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>3.0.0-M4</version> |
|
<configuration> |
|
<includes> |
|
<include>org.leolo.map.osm.extract.test.**</include> |
|
|
|
</includes> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<properties> |
|
<maven.compiler.source>18</maven.compiler.source> |
|
<maven.compiler.target>18</maven.compiler.target> |
|
<gpf-ver>3.21.6</gpf-ver> |
|
</properties> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.apache.logging.log4j</groupId> |
|
<artifactId>log4j-core</artifactId> |
|
<version>2.18.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-cli</groupId> |
|
<artifactId>commons-cli</artifactId> |
|
<version>1.5.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>eu.infomas</groupId> |
|
<artifactId>annotation-detector</artifactId> |
|
<version>3.0.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.13.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.junit.jupiter</groupId> |
|
<artifactId>junit-jupiter-api</artifactId> |
|
<version>5.9.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>de.topobyte</groupId> |
|
<artifactId>osm4j-pbf</artifactId> |
|
<version>1.2.0</version> |
|
</dependency> |
|
</dependencies> |
|
<repositories> |
|
<repository> |
|
<id>topobyte</id> |
|
<name>topobyte</name> |
|
<url>https://mvn.topobyte.de</url> |
|
</repository> |
|
<repository> |
|
<id>Slimjars</id> |
|
<name>Slimjars</name> |
|
<url>https://mvn.slimjars.com</url> |
|
</repository> |
|
</repositories> |
|
|
|
</project> |