2025-10-09 14:25:15 +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>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-module-mdpf</artifactId>
|
|
|
|
<version>${revision}</version>
|
2025-10-09 15:06:32 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2025-10-09 14:25:15 +08:00
|
|
|
</parent>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<artifactId>yudao-module-mdpf-biz</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<dependencies> <!-- 5. 新增依赖,这里引入的都是比较常用的业务组件、技术组件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-module-mdpf-api</artifactId>
|
|
|
|
<version>2.3.0-jdk8-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Web 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- DB 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Test 测试相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-test</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
<version>4.1.2</version>
|
|
|
|
</dependency>
|
2025-10-11 13:27:49 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-excel</artifactId>
|
|
|
|
</dependency>
|
2025-10-16 18:34:18 +08:00
|
|
|
<!-- 添加mongodb相关-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.houbb</groupId>
|
|
|
|
<artifactId>opencc4j</artifactId>
|
|
|
|
<version>1.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.houbb</groupId>
|
|
|
|
<artifactId>sensitive-word</artifactId>
|
|
|
|
<version>0.24.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.opennlp</groupId>
|
|
|
|
<artifactId>opennlp-tools</artifactId>
|
|
|
|
<version>1.9.3</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.hankcs</groupId>
|
|
|
|
<artifactId>hanlp</artifactId>
|
|
|
|
<version>portable-1.3.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-module-infra-biz</artifactId>
|
|
|
|
<version>2.3.0-jdk8-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2025-10-09 14:25:15 +08:00
|
|
|
</dependencies>
|
2025-10-11 13:27:49 +08:00
|
|
|
</project>
|