63 lines
2.1 KiB
XML
63 lines
2.1 KiB
XML
<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</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>tkdata-model-server</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description> <!-- 4. 新增 description 为该模块的描述 -->
|
|
tk-data业务模块
|
|
</description>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<dependencies>
|
|
<!-- 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>
|
|
|
|
<!-- 定时任务相关 -->
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-job</artifactId>
|
|
</dependency>
|
|
|
|
<!-- DB 相关 -->
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
|
|
</dependency>
|
|
<!-- 多租户相关 -->
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
|
|
</dependency>
|
|
<!-- excel依赖 -->
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-excel</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-module-infra</artifactId>
|
|
<version>2.6.0-jdk8-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
</project>
|