2024-12-10 15:00:45 +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-haoka</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<artifactId>yudao-module-haoka-biz</artifactId>
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
<description>
|
|
|
|
|
haoka biz 模块,主要实现haoka 等功能。
|
|
|
|
|
</description>
|
|
|
|
|
<dependencies> <!-- 5. 新增依赖,这里引入的都是比较常用的业务组件、技术组件 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-module-haoka-api</artifactId>
|
|
|
|
|
<version>${revision}</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>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-spring-boot-starter-excel</artifactId>
|
|
|
|
|
</dependency>
|
2024-12-24 13:40:18 +08:00
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.mashape.unirest/unirest-java -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.mashape.unirest</groupId>
|
|
|
|
|
<artifactId>unirest-java</artifactId>
|
|
|
|
|
<version>1.4.9</version>
|
|
|
|
|
</dependency>
|
2024-12-25 20:59:48 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
<version>4.11.0</version>
|
|
|
|
|
</dependency>
|
2025-01-04 20:49:06 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
|
|
|
|
|
</dependency>
|
2024-12-24 13:40:18 +08:00
|
|
|
|
|
2024-12-10 15:00:45 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
</project>
|