You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.8 KiB
52 lines
1.8 KiB
3 months ago
|
<?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>
|
||
|
|
||
|
<groupId>com.macro.mall</groupId>
|
||
|
<artifactId>mall-common</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>mall-common</name>
|
||
|
<description>mall-common project for mall</description>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.macro.mall</groupId>
|
||
|
<artifactId>mall</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.github.pagehelper</groupId>
|
||
|
<artifactId>pagehelper</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.data</groupId>
|
||
|
<artifactId>spring-data-commons</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.logstash.logback</groupId>
|
||
|
<artifactId>logstash-logback-encoder</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.springfox</groupId>
|
||
|
<artifactId>springfox-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-validation</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|