1 Star 0 Fork 9

刘兆恩 / spring-boot-pro

forked from 周宏刚 / spring-boot-pro 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.35 KB
一键复制 编辑 原始数据 按行查看 历史
周宏刚 提交于 2023-01-30 09:37 . 项目初始提交
<?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>
<!-- 管理spring-boot-starter-parent信息 -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<!-- 项目坐标信息 -->
<groupId>com.yumoart.museum</groupId>
<artifactId>spring-boot-pro</artifactId>
<version>3.0.1</version>
<!-- 项目描述信息 -->
<name>spring-boot-pro</name>
<description>spring-boot-pro project for Spring Boot</description>
<!-- 项目开发者列表 -->
<developers>
<developer>
<name>zhouhonggang</name>
<email>honggang_z@163.com</email>
<roles>
<role>Architect</role>
<role>Project Manager</role>
</roles>
<properties>
<dept>Software Integration Division</dept>
</properties>
<timezone>+8</timezone>
</developer>
</developers>
<!-- 项目开源协议 -->
<licenses>
<license>
<name>Mulan Permissive Software License,Version 2</name>
<url>https://license.coscl.org.cn/MulanPSL2</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- 项目版本信息 -->
<properties>
<java.version>17</java.version>
<freemarker.version>2.3.31</freemarker.version>
<mybatis-plus.version>3.5.3.1</mybatis-plus.version>
<commons.beanutils.version>1.9.4</commons.beanutils.version>
</properties>
<!-- 项目依赖管理 -->
<dependencies>
<!-- spring web mvc -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- spring boot validation -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<!-- spring boot data redis -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!-- spring boot cache -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<!-- spring boot aop aspects -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<!-- mybatis plus framework -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<!-- freemarker template -->
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${freemarker.version}</version>
</dependency>
<!-- mybatis plus generator -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<!-- mysql driver -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope>
</dependency>
<!-- lombok plugin -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<!-- commons bean utils -->
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>${commons.beanutils.version}</version>
</dependency>
<!-- spring boot 单元测试 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.github.shalousun</groupId>
<artifactId>smart-doc-maven-plugin</artifactId>
<version>2.6.3</version>
<configuration>
<configFile>src/main/resources/templates/docs/smart-doc.json</configFile>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>html</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/liu-zhaoen/spring-boot-pro.git
git@gitee.com:liu-zhaoen/spring-boot-pro.git
liu-zhaoen
spring-boot-pro
spring-boot-pro
v3.0.3

搜索帮助

344bd9b3 5694891 D2dac590 5694891