<?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"> <parent> <artifactId>saas-order</artifactId> <groupId>cn.wisenergy.sc.card</groupId> <version>0.0.1-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>order-business</artifactId> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>common-redis</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> </dependency> <!--可靠性消息投递--> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>mq-transaction-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>order-domain</artifactId> <version>${project.version}</version> </dependency> <!--代码生成器--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> </dependency> <!--模板引擎 --> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> </dependency> <!-- mysql连接池druid --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-core</artifactId> </dependency> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>order-domain</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>laas-comment</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <!--easy excel--> <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel --> <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> <version>2.1.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.1.8.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>eshopping-api</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.alipay.sdk</groupId> <artifactId>alipay-sdk-java</artifactId> <version>4.8.10.ALL</version> <scope>compile</scope> </dependency> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>merchant-api</artifactId> <version>0.0.1-SNAPSHOT</version> <scope>compile</scope> </dependency> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>payment-core</artifactId> <version>0.0.1-SNAPSHOT</version> <scope>compile</scope> </dependency> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>laas-goods</artifactId> <version>0.0.1-SNAPSHOT</version> <scope>compile</scope> </dependency> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>payment-ali</artifactId> <version>0.0.1-SNAPSHOT</version> <scope>compile</scope> </dependency> </dependencies> <profiles> <!--本地启动--> <profile> <id>local</id> <properties> <activatedProperties>local</activatedProperties> </properties> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> <!--部署线上开发环境--> <profile> <id>dev-line</id> <properties> <activatedProperties>dev-line</activatedProperties> </properties> </profile> <!--部署线上测试环境--> <profile> <id>test-line</id> <properties> <activatedProperties>test-line</activatedProperties> </properties> </profile> </profiles> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>*</include> </includes> <filtering>true</filtering> </resource> <resource> <directory>src/main/resources/production</directory> <includes> <include>*</include> </includes> <targetPath>/production</targetPath> <filtering>true</filtering> </resource> <resource> <directory>src/main/resources/xml</directory> <includes> <include>*.xml</include> </includes> <targetPath>cn/wise/sc/pay/business/order/mapper</targetPath> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <!-- 指定该Main Class为全局的唯一入口 --> <!-- <configuration> <mainClass>GatewayApplication</mainClass> <layout>ZIP</layout> </configuration>--> <executions> <execution> <goals> <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中--> </goals> </execution> </executions> </plugin> </plugins> </build> </project>