mirror of https://gitee.com/stylefeng/roses
78 lines
2.5 KiB
XML
78 lines
2.5 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-system</artifactId>
|
|
<version>7.0.4</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>system-spring-boot-starter</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
|
|
<!--应用管理的业务-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>system-business-app</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
|
|
<!--菜单管理的业务-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>system-business-menu</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
|
|
<!--组织机构管理的业务-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>system-business-organization</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
|
|
<!--资源管理的业务-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>system-business-resource</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
|
|
<!--角色管理的业务-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>system-business-role</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
|
|
<!--用户管理的业务-->
|
|
<!--默认使用内存缓存-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>system-business-user</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>cache-sdk-memory</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
|
|
<!--通知管理的业务-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>system-business-notice</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|