12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?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>
- <parent>
- <groupId>com.ym</groupId>
- <artifactId>mec</artifactId>
- <version>1.0</version>
- </parent>
- <artifactId>mec-mall</artifactId>
- <version>1.0</version>
- <packaging>pom</packaging>
- <name>mec-mall</name>
- <description>mec-mall</description>
- <properties>
- <java.version>1.8</java.version>
- <swagger2.version>2.9.2</swagger2.version>
- <swagger-models.version>1.6.0</swagger-models.version>
- <swagger-annotations.version>1.6.0</swagger-annotations.version>
- <mall-common.version>1.0</mall-common.version>
- <mall-mbg.version>1.0</mall-mbg.version>
- <mall-security.version>1.0</mall-security.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <!--MyBatis分页插件starter-->
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>1.2.7</version>
- </dependency>
- <!--MyBatis分页插件-->
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper</artifactId>
- <version>5.2.0</version>
- </dependency>
- <!--Hutool Java工具包-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.4.0</version>
- </dependency>
- <!--JWT(Json Web Token)登录支持-->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>0.9.0</version>
- </dependency>
- <!-- 阿里云OSS -->
- <dependency>
- <groupId>com.aliyun.oss</groupId>
- <artifactId>aliyun-sdk-oss</artifactId>
- <version>2.8.3</version>
- </dependency>
- <!--集成logstash-->
- <dependency>
- <groupId>net.logstash.logback</groupId>
- <artifactId>logstash-logback-encoder</artifactId>
- <version>5.3</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>mall-mbg</module>
- <module>mall-admin</module>
- <module>mall-common</module>
- <module>mall-portal</module>
- </modules>
- </project>
|