Appearance
简介
基于spring-boot-dependencies 4.0.4,包含了常用的各种库的依赖管理和插件管理
如何使用
parent引入
xml
<parent>
<groupId>io.github.pangju666</groupId>
<artifactId>pangju-dependencies</artifactId>
<version>2.0.0</version>
<relativePath/>
</parent>import引入
建议在非Spring Boot项目使用这种方式导入
xml
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github.pangju666</groupId>
<artifactId>pangju-dependencies</artifactId>
<version>2.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>