2024-01-23 09:19:23 +08: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>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.gunshi</groupId>
|
|
|
|
|
<artifactId>gunshi-boot</artifactId>
|
2024-01-23 15:02:48 +08:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2024-01-23 09:19:23 +08:00
|
|
|
</parent>
|
|
|
|
|
|
2025-07-17 15:26:39 +08:00
|
|
|
<artifactId>gunshi-project-hsz</artifactId>
|
2024-01-23 09:19:23 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2024-07-08 10:05:02 +08:00
|
|
|
<description>
|
|
|
|
|
麻城小玉潭水库系统
|
|
|
|
|
</description>
|
2024-01-23 09:19:23 +08:00
|
|
|
<properties>
|
2024-08-07 17:00:28 +08:00
|
|
|
<java.version>21</java.version>
|
2024-01-23 09:19:23 +08:00
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
</properties>
|
|
|
|
|
|
2024-08-22 11:09:57 +08:00
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.gunshi</groupId>
|
|
|
|
|
<artifactId>gunshi-boot</artifactId>
|
|
|
|
|
<version>1.4-SNAPSHOT</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
2024-01-23 09:19:23 +08:00
|
|
|
<dependencies>
|
2024-08-22 11:09:57 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.gunshi</groupId>
|
|
|
|
|
<artifactId>gunshi-db</artifactId>
|
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2025-08-27 16:43:41 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
|
<artifactId>itext7-core</artifactId>
|
|
|
|
|
<version>7.2.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
|
<artifactId>font-asian</artifactId>
|
|
|
|
|
<version>7.2.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
2024-08-22 11:09:57 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
|
|
|
<version>3.5.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-01-23 09:19:23 +08:00
|
|
|
<dependency>
|
2024-07-08 10:05:02 +08:00
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
2024-08-07 15:59:50 +08:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>checker-qual</artifactId>
|
|
|
|
|
<groupId>org.checkerframework</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2024-01-23 09:19:23 +08:00
|
|
|
</dependency>
|
2024-01-23 15:02:48 +08:00
|
|
|
|
2024-01-25 16:02:16 +08:00
|
|
|
<dependency>
|
2024-07-08 10:05:02 +08:00
|
|
|
<groupId>com.gunshi</groupId>
|
|
|
|
|
<artifactId>gunshi-modules-file</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2024-01-25 16:02:16 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
2024-01-24 17:43:51 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-07-08 10:05:02 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hikvision.ga</groupId>
|
|
|
|
|
<artifactId>artemis-http-client</artifactId>
|
|
|
|
|
<version>1.1.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-net</groupId>
|
|
|
|
|
<artifactId>commons-net</artifactId>
|
|
|
|
|
<version>3.3</version>
|
|
|
|
|
</dependency>
|
2024-07-10 10:20:51 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
<version>3.1.1</version>
|
2024-08-07 15:59:50 +08:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2024-07-10 10:20:51 +08:00
|
|
|
</dependency>
|
2024-07-08 10:05:02 +08:00
|
|
|
|
2024-07-22 17:53:58 +08:00
|
|
|
<dependency>
|
2024-08-07 15:59:50 +08:00
|
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
|
|
|
<artifactId>fastjson2</artifactId>
|
|
|
|
|
<version>2.0.43</version>
|
2024-07-22 17:53:58 +08:00
|
|
|
</dependency>
|
2024-07-26 13:19:17 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.gunshi</groupId>
|
|
|
|
|
<artifactId>flood_algorithm</artifactId>
|
2025-04-09 16:18:37 +08:00
|
|
|
<version>1.1</version>
|
2024-07-26 13:19:17 +08:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2024-07-29 13:23:23 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hikvision.ga</groupId>
|
|
|
|
|
<artifactId>artemis-http-client</artifactId>
|
|
|
|
|
<version>1.1.3</version>
|
|
|
|
|
</dependency>
|
2024-07-31 09:48:05 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
|
|
|
|
</dependency>
|
2024-08-22 11:09:57 +08:00
|
|
|
|
2024-07-22 17:53:58 +08:00
|
|
|
<!-- <dependency>-->
|
2024-08-07 15:59:50 +08:00
|
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
|
<!-- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>org.springframework.data</groupId>-->
|
|
|
|
|
<!-- <artifactId>spring-data-elasticsearch</artifactId>-->
|
|
|
|
|
<!-- <version>5.2.3</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>org.locationtech.jts</groupId>-->
|
|
|
|
|
<!-- <artifactId>jts-core</artifactId>-->
|
|
|
|
|
<!-- <version>1.18.1</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>integration-ruoyi</artifactId>
|
|
|
|
|
<version>3.8.8</version>
|
2024-08-08 10:25:54 +08:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>springfox-swagger-common</artifactId>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
</exclusion>
|
2024-08-22 11:09:57 +08:00
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>jsqlparser</artifactId>
|
|
|
|
|
<groupId>com.github.jsqlparser</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>mybatis</artifactId>
|
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
</exclusion>
|
2024-08-08 10:25:54 +08:00
|
|
|
</exclusions>
|
2024-08-07 15:59:50 +08:00
|
|
|
</dependency>
|
2024-10-16 17:35:36 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.locationtech.jts</groupId>
|
|
|
|
|
<artifactId>jts-core</artifactId>
|
|
|
|
|
<version>1.18.1</version>
|
|
|
|
|
</dependency>
|
2024-01-23 09:19:23 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2024-08-07 17:00:28 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
2025-07-17 15:26:39 +08:00
|
|
|
<mainClass>com.gunshi.project.hsz.Main</mainClass>
|
2024-08-07 17:00:28 +08:00
|
|
|
<excludes>
|
|
|
|
|
<exclude>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
2024-01-23 09:19:23 +08:00
|
|
|
</plugin>
|
2024-01-25 16:02:16 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
2024-01-26 09:12:10 +08:00
|
|
|
<source>21</source>
|
|
|
|
|
<target>21</target>
|
2024-01-25 16:02:16 +08:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2024-01-23 09:19:23 +08:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>nexus</id>
|
|
|
|
|
<name>Nexus public</name>
|
2024-07-08 10:05:02 +08:00
|
|
|
<url>http://local.gunshiiot.com:8081/repository/maven-public/</url>
|
2024-01-23 09:19:23 +08:00
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>nexus-releases</id>
|
|
|
|
|
<name>Nexus Releases</name>
|
2024-07-08 10:05:02 +08:00
|
|
|
<url>http://local.gunshiiot.com:8081/repository/maven-releases</url>
|
2024-01-23 09:19:23 +08:00
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>nexus-snapshots</id>
|
|
|
|
|
<name>Nexus Snapshot</name>
|
2024-07-08 10:05:02 +08:00
|
|
|
<url>http://local.gunshiiot.com:8081/repository/maven-snapshots/</url>
|
2024-01-23 09:19:23 +08:00
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
2024-07-09 10:48:16 +08:00
|
|
|
</project>
|