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.
240 lines
9.1 KiB
240 lines
9.1 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>store.tacomall</groupId>
|
|
|
|
<artifactId>tacomall-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<modules>
|
|
<module>common</module>
|
|
<module>api/open</module>
|
|
<module>api/admin</module>
|
|
<module>api/ma</module>
|
|
<module>api/shop</module>
|
|
<module>mq/rabbitmq</module>
|
|
<module>generator</module>
|
|
<module>job/admin</module>
|
|
<module>job/executor</module>
|
|
</modules>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.4.2</version>
|
|
<relativePath />
|
|
<!-- lookup parent from repository -->
|
|
</parent>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<tacomall.common.version>1.0-SNAPSHOT</tacomall.common.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<maven.surefire.plugin.version>2.19</maven.surefire.plugin.version>
|
|
<springbootmavenplugin.version>2.0.1.RELEASE</springbootmavenplugin.version>
|
|
<spring.boot.version>2.4.2</spring.boot.version>
|
|
<mybatisplus.boot.starter.version>3.4.3.4</mybatisplus.boot.starter.version>
|
|
<baomidou.mybatisplusgenerator.version>3.5.1</baomidou.mybatisplusgenerator.version>
|
|
<fastjson.version>1.2.78</fastjson.version>
|
|
<lombok.version>1.18.0</lombok.version>
|
|
<javajwt.version>3.4.0</javajwt.version>
|
|
<mysql.version>8.0.29</mysql.version>
|
|
<baomidou.dynamicdatasource.version>2.5.6</baomidou.dynamicdatasource.version>
|
|
<binarywang.weixinjavaminiapp.version>4.1.0</binarywang.weixinjavaminiapp.version>
|
|
<aliyun.oss.version>2.4.0</aliyun.oss.version>
|
|
<aliyun.sms.version>2.0.4</aliyun.sms.version>
|
|
<commons.fileupload.version>1.3.1</commons.fileupload.version>
|
|
<shirospring.version>1.7.1</shirospring.version>
|
|
<hutool.version>5.4.3</hutool.version>
|
|
<p6spy.version>3.8.5</p6spy.version>
|
|
<okhttp.version>3.10.0</okhttp.version>
|
|
<jedis.version>3.6.3</jedis.version>
|
|
<xxl-job.core.version>2.3.0</xxl-job.core.version>
|
|
<mybatis-spring-boot-starter.version>2.1.4</mybatis-spring-boot-starter.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>store.tacomall</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>${tacomall.common.version}</version>
|
|
</dependency>
|
|
<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>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.auth0</groupId>
|
|
<artifactId>java-jwt</artifactId>
|
|
<version>${javajwt.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>${mybatisplus.boot.starter.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
|
<version>${baomidou.dynamicdatasource.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-spring</artifactId>
|
|
<version>${shirospring.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-generator</artifactId>
|
|
<version>${baomidou.mybatisplusgenerator.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-miniapp</artifactId>
|
|
<version>${binarywang.weixinjavaminiapp.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-pay</artifactId>
|
|
<version>${binarywang.weixinjavaminiapp.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
<version>${aliyun.oss.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.aliyun</groupId>
|
|
<artifactId>dysmsapi20170525</artifactId>
|
|
<version>${aliyun.sms.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>p6spy</groupId>
|
|
<artifactId>p6spy</artifactId>
|
|
<version>${p6spy.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>${okhttp.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
<version>${jedis.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.xuxueli</groupId>
|
|
<artifactId>xxl-job-core</artifactId>
|
|
<version>${xxl-job.core.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>${mybatis-spring-boot-starter.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>dev</id>
|
|
<properties>
|
|
<environment>dev</environment>
|
|
</properties>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>test</id>
|
|
<properties>
|
|
<environment>test</environment>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>prod</id>
|
|
<properties>
|
|
<environment>prod</environment>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>local</id>
|
|
<properties>
|
|
<environment>local</environment>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${maven.surefire.plugin.version}</version>
|
|
<configuration>
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>central</id>
|
|
<name>central repository</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
<layout>default</layout>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project> |