62 lines
2.1 KiB
XML
62 lines
2.1 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<parent>
|
||
<artifactId>guli_parent</artifactId>
|
||
<groupId>com.atguigu</groupId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>common</artifactId>
|
||
<packaging>pom</packaging>
|
||
<modules>
|
||
<module>service_base</module>
|
||
<module>common_utils</module>
|
||
</modules>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<!--mybatis-plus-->
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<!--lombok用来简化实体类:需要安装lombok插件-->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<!--swagger-->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger2</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger-ui</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<!-- redis -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
</dependency>
|
||
<!-- spring2.X集成redis所需common-pool2-->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>org.apache.commons</groupId>-->
|
||
<!-- <artifactId>commons-pool2</artifactId>-->
|
||
<!-- <version>2.6.0</version>-->
|
||
<!-- </dependency>-->
|
||
</dependencies>
|
||
|
||
|
||
</project> |