<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<!--<version>2.7.18</version>-->
|
<version>2.6.4</version>
|
<relativePath/>
|
</parent>
|
<packaging>jar</packaging>
|
|
<groupId>com.se</groupId>
|
<artifactId>simu</artifactId>
|
<version>1.0.0</version>
|
<name>SimuServer</name>
|
<description>内涝仿真服务</description>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<java.version>1.8</java.version>
|
</properties>
|
|
<dependencies>
|
<!--web-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<!--lombok-->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>1.18.34</version>
|
<optional>true</optional>
|
</dependency>
|
<!--aop-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
<!--mybatis-plus-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.5.7</version>
|
</dependency>
|
<!--redis-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<!--postgresql-->
|
<dependency>
|
<groupId>org.postgresql</groupId>
|
<artifactId>postgresql</artifactId>
|
<scope>runtime</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
</dependency>
|
<!--druid-->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
<version>1.1.22</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>1.1.22</version>
|
</dependency>
|
<!--text-->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-text</artifactId>
|
<version>1.12.0</version>
|
</dependency>
|
<!--hutool-->
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>5.8.29</version>
|
</dependency>
|
<!--httpclient-->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
</dependency>
|
<!--knife4j-->
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
<version>3.0.3</version>
|
</dependency>
|
<!--fast-md5-->
|
<dependency>
|
<groupId>com.joyent.util</groupId>
|
<artifactId>fast-md5</artifactId>
|
<version>2.7.1</version>
|
</dependency>
|
<!--fastjson-->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.83</version>
|
</dependency>
|
<!--dependency>
|
<groupId>com.alibaba.fastjson2</groupId>
|
<artifactId>fastjson2</artifactId>
|
<version>2.0.52</version>
|
</dependency-->
|
<!--gdal-->
|
<dependency>
|
<groupId>org.gdal</groupId>
|
<artifactId>gdal</artifactId>
|
<!--<version>3.9.0</version>-->
|
<version>3.5.0</version>
|
<!--version>3.2.0</version-->
|
</dependency>
|
<!--rainfall-->
|
<dependency>
|
<groupId>com.mathworks.toolbox</groupId>
|
<artifactId>javabuilder</artifactId>
|
<version>1.0</version>
|
<scope>system</scope>
|
<systemPath>${project.basedir}/libs/javabuilder.jar</systemPath>
|
</dependency>
|
<dependency>
|
<groupId>com.se.simu</groupId>
|
<artifactId>Rainfall</artifactId>
|
<version>1.0</version>
|
<scope>system</scope>
|
<systemPath>${project.basedir}/libs/simu.jar</systemPath>
|
</dependency>
|
<!--Caffeine缓存-->
|
<dependency>
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
<artifactId>caffeine</artifactId>
|
<version>2.9.3</version>
|
</dependency>
|
<!--hdf5-->
|
<!--<dependency>
|
<groupId>org.hdfgroup</groupId>
|
<artifactId>hdf-java</artifactId>
|
<version>2.6.1</version>
|
</dependency>-->
|
<!--<dependency>
|
<groupId>org.hdfgroup</groupId>
|
<artifactId>jarhdf5</artifactId>
|
<version>3.3.2</version>
|
</dependency>-->
|
<dependency>
|
<groupId>hdf.hdf5lib</groupId>
|
<artifactId>h5</artifactId>
|
<version>3.3.2</version>
|
<scope>system</scope>
|
<systemPath>${project.basedir}/libs/jarhdf5-3.3.2.jar</systemPath>
|
</dependency><!---->
|
<dependency>
|
<groupId>org.yaml</groupId>
|
<artifactId>snakeyaml</artifactId>
|
<version>1.33</version>
|
<scope>compile</scope>
|
</dependency>
|
|
|
<!--webclient请求-->
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-webflux -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
<version>3.3.1</version>
|
</dependency>
|
|
<!--1-sqlite相关-->
|
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
|
<dependency>
|
<groupId>org.xerial</groupId>
|
<artifactId>sqlite-jdbc</artifactId>
|
<version>3.42.0.0</version>
|
</dependency>
|
<!--2-sqlite 方言-->
|
<dependency>
|
<groupId>com.zsoltfabok</groupId>
|
<artifactId>sqlite-dialect</artifactId>
|
<version>1.0</version>
|
</dependency>
|
|
<!-- 对数据库操作的统计 -->
|
<dependency>
|
<groupId>p6spy</groupId>
|
<artifactId>p6spy</artifactId>
|
<version>3.9.1</version>
|
</dependency>
|
<!--多数据源-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
<version>3.5.2</version>
|
</dependency>
|
|
<!-- Apache Commons CSV (可选) -->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-csv</artifactId>
|
<version>1.8</version> <!-- 根据需要调整版本 -->
|
</dependency>
|
<!-- io常用工具类 -->
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.16.1</version>
|
</dependency>
|
<!-- 文件上传工具类 -->
|
<dependency>
|
<groupId>commons-fileupload</groupId>
|
<artifactId>commons-fileupload</artifactId>
|
<version>1.5</version>
|
</dependency>
|
|
|
</dependencies>
|
|
<build>
|
<finalName>SimuServer</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>2.4.1</version>
|
<configuration>
|
<mainClass>com.se.simu.SimuApplication</mainClass>
|
<!-- https://blog.csdn.net/wangjunjun2008/article/details/136951249 -->
|
<includeSystemScope>true</includeSystemScope>
|
<excludes>
|
<exclude>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</exclude>
|
</excludes>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|