<?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-points</artifactId> <groupId>cn.wisenergy.sc.card</groupId> <version>0.0.1-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>points-business</artifactId> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!-- <dependency>--> <!-- <groupId>org.springframework.boot</groupId>--> <!-- <artifactId>spring-boot-starter-actuator</artifactId>--> <!-- </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>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-to-slf4j</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>points-domain</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <!--base common--> <dependency> <groupId>cn.wisenergy.sc.card</groupId> <artifactId>common-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-core</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-generator</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> </dependency> <dependency> <groupId>org.springframework.amqp</groupId> <artifactId>spring-rabbit</artifactId> </dependency> <!--<dependency>--> <!--<groupId>cn.wisenergy.sc.card</groupId>--> <!--<artifactId>common-security</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> <filtering>true</filtering> <includes> <include>*</include> </includes> </resource> <resource> <directory>src/main/java/cn/wise/sc/pay/business/points/mapper/xml</directory> <filtering>true</filtering> <includes> <include>*.xml</include> </includes> <targetPath>cn/wise/sc/pay/business/points/mapper</targetPath> </resource> </resources> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <!-- 指定该Main Class为全局的唯一入口 --> <configuration> <!--<mainClass>AssociationApplication</mainClass>--> <!--<layout>ZIP</layout>--> </configuration> <executions> <execution> <goals> <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中--> </goals> </execution> </executions> </plugin> </plugins> </build> </project>