1 Star 0 Fork 13

hedden / diboot-v2-example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.34 KB
一键复制 编辑 原始数据 按行查看 历史
uu 提交于 2021-09-29 13:28 . upgrade:升级diboot示例版本
<?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>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.5</version>
<relativePath/>
</parent>
<groupId>com.diboot</groupId>
<artifactId>diboot-v2-example</artifactId>
<version>2.3.1</version>
<packaging>pom</packaging>
<modules>
<module>diboot-core-example</module>
<module>diboot-devtools-example</module>
<module>diboot-iam-example</module>
<module>diboot-file-example</module>
<module>diboot-mobile-example</module>
</modules>
<properties>
<java.version>1.8</java.version>
<springboot.version>2.5.3</springboot.version>
</properties>
<dependencies>
<!-- 编译需要的依赖 -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.22</version>
</dependency>
<!-- 依赖的Spring jar -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${springboot.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
<!-- 单元测试依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
1
https://gitee.com/hedden/diboot-v2-example.git
git@gitee.com:hedden/diboot-v2-example.git
hedden
diboot-v2-example
diboot-v2-example
master

搜索帮助