100 lines
3.1 KiB
XML
100 lines
3.1 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">
|
|||
|
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
|
<parent>
|
|||
|
|
<artifactId>smart-fishery-port-server</artifactId>
|
|||
|
|
<groupId>com.ltgk</groupId>
|
|||
|
|
<version>1.0.0</version>
|
|||
|
|
</parent>
|
|||
|
|
|
|||
|
|
|
|||
|
|
<artifactId>smart-fishery-port-boat</artifactId>
|
|||
|
|
|
|||
|
|
<description>
|
|||
|
|
渔船档案系统模块
|
|||
|
|
</description>
|
|||
|
|
|
|||
|
|
<!-- geoTools 仓库配置 -->
|
|||
|
|
<repositories>
|
|||
|
|
<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>osgeo-snapshot</id>
|
|||
|
|
<name>OSGeo Snapshot Repository</name>
|
|||
|
|
<url>https://repo.osgeo.org/repository/snapshot/</url>
|
|||
|
|
<snapshots>
|
|||
|
|
<enabled>true</enabled>
|
|||
|
|
</snapshots>
|
|||
|
|
<releases>
|
|||
|
|
<enabled>false</enabled>
|
|||
|
|
</releases>
|
|||
|
|
</repository>
|
|||
|
|
</repositories>
|
|||
|
|
|
|||
|
|
<dependencies>
|
|||
|
|
|
|||
|
|
<!-- 通用工具-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.ltgk</groupId>
|
|||
|
|
<artifactId>smart-fishery-port-common</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.ltgk</groupId>
|
|||
|
|
<artifactId>smart-fishery-port-port</artifactId>
|
|||
|
|
<version>1.0.0</version>
|
|||
|
|
<scope>compile</scope>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.ltgk</groupId>
|
|||
|
|
<artifactId>smart-fishery-port-crew</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- 地理空间计算(GeographicLib 的 Java 实现) -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>net.sf.geographiclib</groupId>
|
|||
|
|
<artifactId>GeographicLib-Java</artifactId>
|
|||
|
|
<version>2.0</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.jgrapht</groupId>
|
|||
|
|
<artifactId>jgrapht-core</artifactId>
|
|||
|
|
<!-- 支持Java8 的最新版本 -->
|
|||
|
|
<version>1.4.0</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- 几何操作(JTS Topology Suite) -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.locationtech.jts</groupId>
|
|||
|
|
<artifactId>jts-core</artifactId>
|
|||
|
|
<version>1.19.0</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- 空间数据读写(GeoTools) -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.geotools</groupId>
|
|||
|
|
<artifactId>gt-geojson</artifactId>
|
|||
|
|
<version>${geotools.version}</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.ltgk</groupId>
|
|||
|
|
<artifactId>smart-fishery-port-video</artifactId>
|
|||
|
|
<version>1.0.0</version>
|
|||
|
|
<scope>compile</scope>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
</dependencies>
|
|||
|
|
|
|||
|
|
</project>
|