mirror of https://gitee.com/stylefeng/roses
67 lines
2.0 KiB
XML
67 lines
2.0 KiB
XML
|
<?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.stylefeng.roses</groupId>
|
||
|
<artifactId>kernel-s-expand</artifactId>
|
||
|
<version>7.6.0</version>
|
||
|
<relativePath>../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>expand-business</artifactId>
|
||
|
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<!--拓展字段api-->
|
||
|
<dependency>
|
||
|
<groupId>cn.stylefeng.roses</groupId>
|
||
|
<artifactId>expand-api</artifactId>
|
||
|
<version>${roses.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--system业务api-->
|
||
|
<!--调用用户相关业务-->
|
||
|
<dependency>
|
||
|
<groupId>cn.stylefeng.roses</groupId>
|
||
|
<artifactId>system-api</artifactId>
|
||
|
<version>${roses.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--资源api模块-->
|
||
|
<!--用在资源控制器,资源扫描上-->
|
||
|
<dependency>
|
||
|
<groupId>cn.stylefeng.roses</groupId>
|
||
|
<artifactId>scanner-api</artifactId>
|
||
|
<version>${roses.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--字典api模块-->
|
||
|
<dependency>
|
||
|
<groupId>cn.stylefeng.roses</groupId>
|
||
|
<artifactId>dict-api</artifactId>
|
||
|
<version>${roses.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--数据库sdk-->
|
||
|
<!--数据库dao框架-->
|
||
|
<dependency>
|
||
|
<groupId>cn.stylefeng.roses</groupId>
|
||
|
<artifactId>db-sdk-mp</artifactId>
|
||
|
<version>${roses.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--web模块-->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|