<?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">
|
<parent>
|
<artifactId>ruoyi</artifactId>
|
<groupId>com.ruoyi</groupId>
|
<version>3.8.5</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
<artifactId>ard-work</artifactId>
|
<description>
|
安瑞达业务模块
|
</description>
|
|
<dependencies>
|
|
<!-- 通用工具-->
|
<dependency>
|
<groupId>com.ruoyi</groupId>
|
<artifactId>ruoyi-common</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
|
<!--海康录像机二次开发依赖jar包-->
|
<dependency>
|
<groupId>net.java.jna</groupId>
|
<artifactId>jna</artifactId>
|
<version>1.0.0</version>
|
<!-- <groupId>com.sun.jna</groupId>-->
|
<!-- <artifactId>yx</artifactId>-->
|
<!-- <version>0.0.1</version>-->
|
<!-- <scope>system</scope>-->
|
<!-- <systemPath>${project.basedir}/lib/jna.jar</systemPath>-->
|
</dependency>
|
<dependency>
|
<groupId>net.java.examples</groupId>
|
<artifactId>examples</artifactId>
|
<version>1.0.0</version>
|
<!-- <groupId>com.sun.jna.examples</groupId>-->
|
<!-- <artifactId>yx</artifactId>-->
|
<!-- <version>0.0.1</version>-->
|
<!-- <scope>system</scope>-->
|
<!-- <systemPath>${project.basedir}/lib/examples.jar</systemPath>-->
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<!--thymeleaf 模板引擎 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>io.minio</groupId>
|
<artifactId>minio</artifactId>
|
<version>8.3.5</version>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<version>1.6.2</version>
|
<scope>compile</scope>
|
</dependency>
|
<!-- Forest -->
|
<dependency>
|
<groupId>com.dtflys.forest</groupId>
|
<artifactId>forest-spring-boot-starter</artifactId>
|
<version>1.5.22</version>
|
</dependency>
|
<dependency>
|
<groupId>com.ruoyi</groupId>
|
<artifactId>ruoyi-system</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-core</artifactId>
|
<version>3.0.0</version>
|
<scope>compile</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>knife4j-annotations</artifactId>
|
<version>2.0.9</version>
|
<scope>compile</scope>
|
</dependency>
|
</dependencies>
|
|
</project>
|