项目名称:拉新营销平台
业务:
⽤户服务:⽤户注册/登录、 头像和信息维护、 收货地址模块
优惠券服务:展示和领劵、 使⽤和释放,
商品服务:商品基本展示库存扣减回收、 购物⻋模块
订单服务:下单⽀付、 订单基本操作
https://blog.virtualagent.cn/blog/series/Project_XD_Paas
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.
143 lines
5.7 KiB
143 lines
5.7 KiB
<?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>cn.nla</groupId>
|
|
<artifactId>nla-shop</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<modules>
|
|
<module>nla-common</module>
|
|
<module>nla-user-service</module>
|
|
<module>nla-coupon-service</module>
|
|
<module>nla-product-service</module>
|
|
<module>nla-order-service</module>
|
|
<module>nla-gateway</module>
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
<description>拉新营销平台</description>
|
|
|
|
<properties>
|
|
<java.version>11</java.version>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<spring.boot.version>2.3.3.RELEASE</spring.boot.version>
|
|
<spring.cloud.version>Hoxton.SR8</spring.cloud.version>
|
|
<alibaba.cloud.version>2.2.1.RELEASE</alibaba.cloud.version>
|
|
<mybatisplus.boot.starter.version>3.4.0</mybatisplus.boot.starter.version>
|
|
<lombok.version>1.18.16</lombok.version>
|
|
<commons.lang3.version>3.9</commons.lang3.version>
|
|
<commons.codec.version>1.15</commons.codec.version>
|
|
<springfox.boot.starter.version>3.0.0</springfox.boot.starter.version>
|
|
<docker.image.prefix>nla-cloud</docker.image.prefix>
|
|
<!--跳过单元测试-->
|
|
<skipTests>true</skipTests>
|
|
</properties>
|
|
<!--锁定版本-->
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring.cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
<version>${alibaba.cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!--mybatis plus和springboot整合-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>${mybatisplus.boot.starter.version}</version>
|
|
</dependency>
|
|
<!--scope=provided,说明它只在编译阶段⽣效,不需要打⼊包中, Lombok在编译期将带Lombok注解的Java⽂件正确编译为完整的Class⽂件-->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!--commons-lang3 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons.lang3.version}</version>
|
|
</dependency>
|
|
<!--⽤于加密-->
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>${commons.codec.version}</version>
|
|
</dependency>
|
|
<!--接⼝⽂档依赖-->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-boot-starter</artifactId>
|
|
<version>${springfox.boot.starter.version}</version>
|
|
</dependency>
|
|
<!-- OSS-->
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
<version>3.10.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<!-- 代码库 -->
|
|
<repositories>
|
|
<repository>
|
|
<id>maven-ali</id>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public//</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>public</id>
|
|
<name>aliyun nexus</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<!--module不⽤添加打包版本信息-->
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<configuration>
|
|
<fork>true</fork>
|
|
<addResources>true</addResources>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|
|
|