kopia lustrzana https://github.com/onthegomap/planetiler
129 wiersze
3.9 KiB
XML
129 wiersze
3.9 KiB
XML
<?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">
|
|
|
|
<!-- Maven configuration for this as a standalone project -->
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
<planetiler.version>0.8.3-SNAPSHOT</planetiler.version>
|
|
<junit.version>5.10.3</junit.version>
|
|
<!-- Replace this with the main class for the profile you add -->
|
|
<mainClass>com.onthegomap.planetiler.examples.BikeRouteOverlay</mainClass>
|
|
</properties>
|
|
|
|
<groupId>com.onthegomap.planetiler</groupId>
|
|
<artifactId>planetiler-examples</artifactId>
|
|
<version>HEAD</version>
|
|
|
|
<name>Example Planetiler Project</name>
|
|
|
|
<repositories>
|
|
<!-- Planetiler depends on geotools for shapefile processing, which is not in maven central. Add here: -->
|
|
<repository>
|
|
<id>osgeo</id>
|
|
<name>OSGeo Release Repository</name>
|
|
<url>https://repo.osgeo.org/repository/release/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
<repository>
|
|
<id>nexus-snapshots</id>
|
|
<name>Nexus SNAPSHOT Repository</name>
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.onthegomap.planetiler</groupId>
|
|
<artifactId>planetiler-core</artifactId>
|
|
<version>${planetiler.version}</version>
|
|
</dependency>
|
|
|
|
<!-- To use test utilities: -->
|
|
<dependency>
|
|
<groupId>com.onthegomap.planetiler</groupId>
|
|
<artifactId>planetiler-core</artifactId>
|
|
<version>${planetiler.version}</version>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.3.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<version>3.3.1</version>
|
|
</plugin>
|
|
|
|
<!-- Create an executable jar from "mvn package" goal -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>3.7.1</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.onthegomap.planetiler</groupId>
|
|
<artifactId>planetiler-core</artifactId>
|
|
<version>${planetiler.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<configuration>
|
|
<archive>
|
|
<manifestEntries>
|
|
<Multi-Release>true</Multi-Release>
|
|
</manifestEntries>
|
|
<manifest>
|
|
<mainClass>${mainClass}</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>with-deps</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|