2021-01-15 11:03:36 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-02-07 17:29:33 +08:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2021-01-15 11:03:36 +08:00
|
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
|
|
<artifactId>mall-ebtp-cloud-parent</artifactId>
|
2021-12-27 15:08:27 +08:00
|
|
|
<version>2.0.1-SNAPSHOT</version>
|
2021-01-15 11:03:36 +08:00
|
|
|
</parent>
|
2021-02-07 17:29:33 +08:00
|
|
|
<groupId>com.chinaunicom.mall.ebtp</groupId>
|
|
|
|
<artifactId>biz_service_ebtp_project</artifactId>
|
|
|
|
<version>0.0.1</version>
|
|
|
|
<name>biz_service_ebtp_project</name>
|
2021-01-15 11:03:36 +08:00
|
|
|
|
2021-02-07 17:29:33 +08:00
|
|
|
<dependencies>
|
2021-01-15 11:03:36 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.chinaunicom.mall.ebtp</groupId>
|
|
|
|
<artifactId>uboot-core</artifactId>
|
2021-12-27 15:08:27 +08:00
|
|
|
<version>2.0.1-SNAPSHOT</version>
|
2021-02-07 17:29:33 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2021-01-15 11:03:36 +08:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>maven-snapshot-local</id>
|
|
|
|
<name>maven-snapshot-local</name>
|
|
|
|
<url>http://ccp.tianti.tg.unicom.local/artifactory/tianti-maven-snapshot-local/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
2021-01-27 15:48:16 +08:00
|
|
|
<updatePolicy>always</updatePolicy>
|
2021-01-15 11:03:36 +08:00
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2021-02-07 17:29:33 +08:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/mapper/*Mapper.xml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-01-15 11:03:36 +08:00
|
|
|
|
|
|
|
</project>
|