XAML-Map-Control/MapsforgeTiles/pom.xml

62 lines
2 KiB
XML
Raw Normal View History

2026-02-11 22:22:39 +01: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">
<modelVersion>4.0.0</modelVersion>
<groupId>xaml.mapcontrol</groupId>
<artifactId>mapsforge-tilerenderer</artifactId>
<version>0.1.0</version>
<properties>
<maven.compiler.release>8</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.mapsforge.mapsforge</groupId>
<artifactId>mapsforge-core</artifactId>
<version>0.27.0</version>
</dependency>
<dependency>
<groupId>com.github.mapsforge.mapsforge</groupId>
<artifactId>mapsforge-map-awt</artifactId>
<version>0.27.0</version>
</dependency>
<dependency>
<groupId>com.github.mapsforge.mapsforge</groupId>
<artifactId>mapsforge-themes</artifactId>
<version>0.27.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>