gunshi-project-ss/pom.xml

177 lines
5.9 KiB
XML
Raw Normal View History

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>
2026-01-12 14:53:50 +08:00
<artifactId>gunshi-project-ss-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>./parent/pom.xml</relativePath>
2024-01-23 09:19:23 +08:00
</parent>
2026-01-12 14:53:50 +08:00
<artifactId>gunshi-project-ss</artifactId>
2024-01-23 09:19:23 +08:00
<version>1.0-SNAPSHOT</version>
2024-07-08 10:05:02 +08:00
<description>
黑石咀水库系统
2024-07-08 10:05:02 +08:00
</description>
<!-- 属性继承自parent项目 -->
<!-- 依赖版本管理继承自parent项目 -->
2024-01-23 09:19:23 +08:00
<dependencies>
<dependency>
<groupId>com.gunshi</groupId>
2026-01-12 14:53:50 +08:00
<artifactId>gunshi-project-ss-common</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
2024-08-22 11:09:57 +08:00
<dependency>
<groupId>com.gunshi</groupId>
<artifactId>gunshi-db</artifactId>
</dependency>
2025-09-16 09:04:25 +08:00
<!-- iText7 核心库 -->
<!-- iTextPDF核心库 - 用于PDF生成 -->
<dependency>
<groupId>com.itextpdf</groupId>
2025-09-16 09:04:25 +08:00
<artifactId>kernel</artifactId>
</dependency>
2025-09-16 09:04:25 +08:00
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>io</artifactId>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>forms</artifactId>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>layout</artifactId>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
2025-09-16 09:04:25 +08:00
<artifactId>svg</artifactId>
</dependency>
2024-08-22 11:09:57 +08:00
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
</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-01-23 09:19:23 +08:00
</dependency>
<dependency>
2024-07-08 10:05:02 +08:00
<groupId>com.gunshi</groupId>
<artifactId>gunshi-modules-file</artifactId>
</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>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
</dependency>
2024-07-10 10:20:51 +08:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
</dependency>
2024-07-08 10:05:02 +08:00
<dependency>
2024-08-07 15:59:50 +08:00
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
</dependency>
<dependency>
<groupId>org.gunshi</groupId>
<artifactId>flood_algorithm</artifactId>
2024-07-29 13:23:23 +08:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
2024-08-22 11:09:57 +08:00
<dependency>
<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>-->
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>
</dependency>
<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
</dependency>
2024-01-23 09:19:23 +08:00
</dependencies>
<!-- 构建配置继承自parent项目 -->
2024-01-23 09:19:23 +08:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
2024-01-23 09:19:23 +08:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
2025-12-29 17:13:09 +08:00
<mainClass>com.gunshi.project.ss.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
2024-01-23 09:19:23 +08:00
</plugins>
</build>
<!-- 仓库配置继承自parent项目 -->
2024-07-09 10:48:16 +08:00
</project>