76 lines
2.5 KiB
XML
76 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<!-- 指定父项目为 weblog-springboot -->
|
|
<parent>
|
|
<groupId>com.quanxiaoha</groupId>
|
|
<artifactId>weblog-springboot</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<groupId>com.quanxiaoha</groupId>
|
|
<artifactId>weblog-web</artifactId>
|
|
<name>weblog-web</name>
|
|
<description>weblog-web (入口项目,负责博客前台展示相关功能,打包也放在这个模块负责)</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.quanxiaoha</groupId>
|
|
<artifactId>weblog-module-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.quanxiaoha</groupId>
|
|
<artifactId>weblog-module-admin</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Web 依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 免写冗余的 Java 样板式代码 -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- 单元测试 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- 参数校验 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
|
|
<!-- knife4j -->
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-openapi2-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<!-- <dependency> -->
|
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
|
<!-- <artifactId>spring-boot-starter-json</artifactId> -->
|
|
<!-- </dependency> -->
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|