1 Star 0 Fork 0

伟光/diamond

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 3.32 KB
一键复制 编辑 原始数据 按行查看 历史
xieweig 提交于 2022-02-11 23:43 . Initial commit
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.grow</groupId>
<artifactId>diamond</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>diamond</name>
<packaging>pom</packaging>
<description>diamond</description>
<modules>
<!-- 本地调用的maven普通模块 用于dto和interface的存放 方便远程调用 -->
<module>abase</module>
<!-- 设计帐号表 用户表 角色表 路由表 完成身份认证的模块 各个业务模块独立管理自己的权限拦截
本模块作为app 必须启动 作为认证中心-->
<module>auth</module>
<!-- 本地调用的boot-starter模块 用于自动实例化部分工具bean
用户enable开启部分配置如security权限拦截 -->
<module>dmd-spring-boot-starter</module>
<!--维护用户表和角色表-->
<module>auth-manage</module>
<module>common-service</module>
<module>aacenter</module>
</modules>
<properties>
<java.version>1.8</java.version>
<spring-cloud.version>2020.0.3</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.grow</groupId>
<artifactId>abase</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.grow</groupId>
<artifactId>dmd-spring-boot-starter</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.3</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- 父模块是一个目录作用 统筹安排 不需要打包-->
<build>
<plugins>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xieweig/diamond.git
git@gitee.com:xieweig/diamond.git
xieweig
diamond
diamond
master

搜索帮助