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.
96 lines
3.9 KiB
96 lines
3.9 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>com.saas</groupId>
|
|
<artifactId>community-app-provider</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<artifactId>community-parent</artifactId>
|
|
<groupId>com.saas</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- *************************** api模块依赖 ************************************************** -->
|
|
<dependency>
|
|
<groupId>com.saas</groupId>
|
|
<artifactId>community-api</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- *************************** api模块依赖 ************************************************** -->
|
|
|
|
<!-- *************************** model模块依赖 ************************************************** -->
|
|
<dependency>
|
|
<groupId>com.saas</groupId>
|
|
<artifactId>community-model</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- *************************** model模块依赖 ************************************************** -->
|
|
|
|
<!-- *************************** mapper模块依赖 ************************************************** -->
|
|
<dependency>
|
|
<groupId>com.saas</groupId>
|
|
<artifactId>community-mapper</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- *************************** mapper模块依赖 ************************************************** -->
|
|
|
|
<!-- *************************** common模块依赖 ************************************************** -->
|
|
<dependency>
|
|
<groupId>com.saas</groupId>
|
|
<artifactId>community-common</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- *************************** common模块依赖 ************************************************** -->
|
|
|
|
<!-- *************************** springboot-amqp ************************************************** -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- *************************** springboot-amqp ************************************************** -->
|
|
|
|
<!-- *************************** 支付宝sdk ************************************************** -->
|
|
<dependency>
|
|
<groupId>com.alipay.sdk</groupId>
|
|
<artifactId>alipay-sdk-java</artifactId>
|
|
</dependency>
|
|
<!-- *************************** 支付宝sdk ************************************************** -->
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>community-app-provider</finalName>
|
|
<!-- xxx.jar没有主清单属性-->
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>2.2.2.RELEASE</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>8</source>
|
|
<target>8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|