78 lines
2.6 KiB
XML
78 lines
2.6 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>
|
||
|
|
<groupId>com.ruoyi</groupId>
|
||
|
|
<artifactId>ruoyi</artifactId>
|
||
|
|
<version>3.8.8</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>ibs</artifactId>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
|
||
|
|
<!-- Mockito依赖 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mockito</groupId>
|
||
|
|
<artifactId>mockito-core</artifactId>
|
||
|
|
<version>3.3.3</version> <!-- 请根据需要选择合适的版本 -->
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<!-- JUnit依赖 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
<version>4.12</version> <!-- 请根据需要选择合适的版本 -->
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<!-- 通用工具-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.ruoyi</groupId>
|
||
|
|
<artifactId>ruoyi-common</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.locationtech.jts</groupId>
|
||
|
|
<artifactId>jts-core</artifactId>
|
||
|
|
<version>1.18.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-webmvc</artifactId>
|
||
|
|
<version>5.3.31</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>org.postgresql</groupId>-->
|
||
|
|
<!-- <artifactId>postgresql</artifactId>-->
|
||
|
|
<!-- <version>42.3.3</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.swagger</groupId>
|
||
|
|
<artifactId>swagger-annotations</artifactId>
|
||
|
|
<version>1.6.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.ruoyi</groupId>
|
||
|
|
<artifactId>ruoyi-system</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>easyexcel-core</artifactId>
|
||
|
|
<version>3.3.3</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.opencsv</groupId>
|
||
|
|
<artifactId>opencsv</artifactId>
|
||
|
|
<version>5.2</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|