2024-04-16 17:26:55 +08:00
|
|
|
<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>org.example</groupId>
|
|
|
|
|
<artifactId>CutFillDemo</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>CutFillDemo</name>
|
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2024-05-17 16:23:15 +08:00
|
|
|
<geotools.version>28.2</geotools.version>
|
2024-04-19 17:06:36 +08:00
|
|
|
<gdal.binddir>src/main/resources/gdal/win32</gdal.binddir>
|
2024-04-16 17:26:55 +08:00
|
|
|
</properties>
|
|
|
|
|
<repositories>
|
2024-05-17 16:23:15 +08:00
|
|
|
|
2024-04-16 17:26:55 +08:00
|
|
|
<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>
|
2024-05-17 16:23:15 +08:00
|
|
|
<repository>
|
|
|
|
|
<id>nexus-aliyun</id>
|
|
|
|
|
<name>nexus-aliyun</name>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
2024-04-16 17:26:55 +08:00
|
|
|
</repositories>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
<version>2.0.4.RELEASE</version>
|
|
|
|
|
</dependency>
|
2024-04-26 17:01:37 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-main</artifactId>
|
2024-05-17 16:23:15 +08:00
|
|
|
<version>28.2</version>
|
2024-04-26 17:01:37 +08:00
|
|
|
</dependency>
|
2024-04-16 17:26:55 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-epsg-hsql</artifactId>
|
2024-05-17 16:23:15 +08:00
|
|
|
<version>28.2</version>
|
2024-04-16 17:26:55 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-geotiff</artifactId>
|
|
|
|
|
<version>${geotools.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-image</artifactId>
|
|
|
|
|
<version>${geotools.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-shapefile</artifactId>
|
|
|
|
|
<version>${geotools.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-wms</artifactId>
|
|
|
|
|
<version>${geotools.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-swing</artifactId>
|
|
|
|
|
<version>${geotools.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-grid</artifactId>
|
|
|
|
|
<version>${geotools.version}</version>
|
|
|
|
|
</dependency>
|
2024-04-18 17:32:30 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-process</artifactId>
|
|
|
|
|
<version>${geotools.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-opengis</artifactId>
|
2024-05-17 16:23:15 +08:00
|
|
|
<version>28.2</version>
|
2024-04-18 17:32:30 +08:00
|
|
|
</dependency>
|
2024-04-23 17:33:56 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-geotiff</artifactId>
|
|
|
|
|
<version>${geotools.version}</version>
|
|
|
|
|
</dependency>
|
2024-05-07 10:08:30 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-geojson</artifactId>
|
|
|
|
|
<version>${geotools.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.geotools</groupId>
|
|
|
|
|
<artifactId>gt-geometry</artifactId>
|
|
|
|
|
<version>24.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>1.2.47</version>
|
|
|
|
|
</dependency>
|
2024-04-19 17:06:36 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.gdal/gdal -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.gdal</groupId>
|
|
|
|
|
<artifactId>gdal</artifactId>
|
2024-04-26 17:01:37 +08:00
|
|
|
<version>3.8.4</version>
|
2024-04-19 17:06:36 +08:00
|
|
|
<scope>system</scope>
|
2024-04-26 17:01:37 +08:00
|
|
|
<systemPath>${project.basedir}/${gdal.binddir}/gdal-3.8.4.jar</systemPath>
|
|
|
|
|
</dependency>
|
2024-05-17 16:23:15 +08:00
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>opencv</groupId>-->
|
|
|
|
|
<!-- <artifactId>opencv-490</artifactId>-->
|
|
|
|
|
<!-- <version>opencv-490</version>-->
|
|
|
|
|
<!-- <scope>system</scope>-->
|
|
|
|
|
<!-- <optional>true</optional>-->
|
|
|
|
|
<!-- <systemPath>${project.basedir}/src/main/resources/opencv/opencv-490.jar</systemPath>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.bytedeco/opencv -->
|
2024-05-07 10:08:30 +08:00
|
|
|
<dependency>
|
2024-05-17 16:23:15 +08:00
|
|
|
<groupId>org.bytedeco</groupId>
|
|
|
|
|
<artifactId>opencv</artifactId>
|
|
|
|
|
<version>4.5.3-1.5.6</version>
|
2024-04-19 17:06:36 +08:00
|
|
|
</dependency>
|
2024-05-17 16:23:15 +08:00
|
|
|
|
2024-04-16 17:26:55 +08:00
|
|
|
</dependencies>
|
2024-05-16 14:03:45 +08:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<version>2.0.4.RELEASE</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2024-04-16 17:26:55 +08:00
|
|
|
</project>
|