2026-01-09 20:13:01 +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">
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<artifactId>ruoyi</artifactId>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<version>3.8.8</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>ruoyi-bussiness</artifactId>
|
|
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
|
bussiness系统模块
|
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.nls</groupId>
|
|
|
|
|
|
<artifactId>nls-sdk-tts</artifactId>
|
|
|
|
|
|
<version>2.2.14</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.nls</groupId>
|
|
|
|
|
|
<artifactId>nls-sdk-common</artifactId>
|
|
|
|
|
|
<version>2.2.14</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 通用工具-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-common</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.nls</groupId>
|
|
|
|
|
|
<artifactId>nls-sdk-recognizer</artifactId>
|
|
|
|
|
|
<version>2.2.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
|
|
<version>1.6.2</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
|
<artifactId>springfox-spring-web</artifactId>
|
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
|
|
<version>1.6.2</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>com.ruoyi</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>ruoyi-framework</artifactId>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
|
<version>4.0.3</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
|
|
<artifactId>elasticsearch-rest-high-level-client</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
|
|
<artifactId>elasticsearch-rest-high-level-client</artifactId>
|
|
|
|
|
|
<version>7.14.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
|
|
<version>7.14.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.dromara.easy-es</groupId>
|
|
|
|
|
|
<artifactId>easy-es-boot-starter</artifactId>
|
|
|
|
|
|
<version>2.0.0</version>
|
|
|
|
|
|
</dependency>
|
2026-07-16 10:02:56 +08:00
|
|
|
|
<!-- Java 侧岗位名称预分词;使用 IKSegmenter,不覆盖 Elasticsearch 自带的 Lucene 版本 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jianggujin</groupId>
|
|
|
|
|
|
<artifactId>IKAnalyzer-lucene</artifactId>
|
|
|
|
|
|
<version>8.0.0</version>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
|
|
<artifactId>lucene-core</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
|
|
<artifactId>lucene-queryparser</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
|
|
<artifactId>lucene-analyzers-common</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
2026-01-09 20:13:01 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
|
<version>5.7.22</version>
|
|
|
|
|
|
</dependency>
|
2026-07-20 14:54:15 +08:00
|
|
|
|
<!-- 新闻资讯富文本 HTML 白名单清理(Java 8 兼容版本) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
|
<version>1.15.4</version>
|
|
|
|
|
|
</dependency>
|
2026-01-09 20:13:01 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--localDate-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
|
|
</dependency>
|
2026-07-14 21:13:57 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
2026-07-08 19:32:40 +08:00
|
|
|
|
<!-- openpdf -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.librepdf</groupId>
|
|
|
|
|
|
<artifactId>openpdf</artifactId>
|
|
|
|
|
|
<version>1.3.30</version>
|
|
|
|
|
|
</dependency>
|
2026-01-09 20:13:01 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
2026-07-14 21:13:57 +08:00
|
|
|
|
</project>
|