kopia lustrzana https://github.com/onthegomap/planetiler
63 wiersze
2.1 KiB
XML
63 wiersze
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- This pom.xml gets used when this repo loaded as a submodule within https://github.com/onthegomap/planetiler -->
|
|
<!-- TODO it should be in planetiler-openmaptiles/submodule.pom.xml when this is fixed: https://github.com/dependabot/dependabot-core/issues/9193 -->
|
|
<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.openmaptiles</groupId>
|
|
<artifactId>planetiler-openmaptiles</artifactId>
|
|
|
|
<parent>
|
|
<groupId>com.onthegomap.planetiler</groupId>
|
|
<artifactId>planetiler-parent</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>./</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.onthegomap.planetiler</groupId>
|
|
<artifactId>planetiler-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
<version>2.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.commonmark</groupId>
|
|
<artifactId>commonmark</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.onthegomap.planetiler</groupId>
|
|
<artifactId>planetiler-core</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>planetiler-openmaptiles/src/main/java</sourceDirectory>
|
|
<testSourceDirectory>planetiler-openmaptiles/src/test/java</testSourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>io.github.zlika</groupId>
|
|
<artifactId>reproducible-build-maven-plugin</artifactId>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<!-- we don't want to deploy this module -->
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|