planetiler/planetiler-examples/pom.xml

51 wiersze
1.4 KiB
XML
Czysty Zwykły widok Historia

2021-06-07 11:46:03 +00:00
<?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">
2021-10-20 01:57:47 +00:00
<!-- Maven configuration for this module as a sub-project -->
2021-10-20 01:57:47 +00:00
2021-06-07 11:46:03 +00:00
<modelVersion>4.0.0</modelVersion>
<artifactId>planetiler-examples</artifactId>
2021-10-20 01:57:47 +00:00
<parent>
<groupId>com.onthegomap.planetiler</groupId>
<artifactId>planetiler-parent</artifactId>
2022-09-22 22:02:39 +00:00
<version>${revision}</version>
</parent>
2021-06-07 11:46:03 +00:00
<dependencies>
<dependency>
<groupId>com.onthegomap.planetiler</groupId>
<artifactId>planetiler-core</artifactId>
<version>${project.parent.version}</version>
2021-06-07 11:46:03 +00:00
</dependency>
2021-08-17 01:51:49 +00:00
<!-- To use test utilities: -->
<dependency>
<groupId>com.onthegomap.planetiler</groupId>
<artifactId>planetiler-core</artifactId>
<version>${project.parent.version}</version>
2021-08-17 01:51:49 +00:00
<type>test-jar</type>
<scope>test</scope>
</dependency>
2021-06-07 11:46:03 +00:00
</dependencies>
<build>
<plugins>
2021-10-20 01:57:47 +00:00
<plugin>
<groupId>io.github.zlika</groupId>
<artifactId>reproducible-build-maven-plugin</artifactId>
2021-10-20 01:57:47 +00:00
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
2021-06-07 11:46:03 +00:00
<configuration>
<!-- we don't want to deploy this module -->
<skip>true</skip>
2021-06-07 11:46:03 +00:00
</configuration>
</plugin>
</plugins>
</build>
</project>