123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?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>com.microsvc.toolkit.middleware</groupId>
- <artifactId>microsvc-middleware-payment</artifactId>
- <version>${microsvc.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>mybatis-plus-annotation</artifactId>
- <groupId>com.baomidou</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <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>
|