55 lines
1.6 KiB
XML
55 lines
1.6 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">
|
|
<parent>
|
|
<groupId>org.dromara</groupId>
|
|
<artifactId>ruoyi-common</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>ruoyi-common-mapbox</artifactId>
|
|
|
|
<description>
|
|
ruoyi-common-mapbox 地图工具模块
|
|
</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.mapbox.mapboxsdk</groupId>
|
|
<artifactId>mapbox-sdk-geojson</artifactId>
|
|
<version>7.4.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.mapbox.mapboxsdk</groupId>
|
|
<artifactId>mapbox-sdk-services</artifactId>
|
|
<version>7.4.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.mapbox.mapboxsdk</groupId>
|
|
<artifactId>mapbox-sdk-turf</artifactId>
|
|
<version>7.4.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.mapbox.mapboxsdk</groupId>
|
|
<artifactId>mapbox-sdk-core</artifactId>
|
|
<version>7.4.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>mapbox-repo</id>
|
|
<url>https://api.mapbox.com/downloads/v2/releases/maven</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project>
|