83 lines
2.8 KiB
XML
83 lines
2.8 KiB
XML
<?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>
|
|
|
|
<parent>
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
<artifactId>mall-ebtp-cloud</artifactId>
|
|
<version>2.4.1-zyhy-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
<artifactId>mall-ebtp-cloud-parent</artifactId>
|
|
<version>2.4.1-zyhy-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<name>mall-ebtp-cloud-parent</name>
|
|
|
|
<properties>
|
|
<tomcat.version>9.0.64</tomcat.version>
|
|
</properties>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
<artifactId>mall-ebtp-cloud-jpa-starter</artifactId>
|
|
<version>2.4.1-zyhy-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
<artifactId>mall-ebtp-cloud-kafka-starter</artifactId>
|
|
<version>2.4.1-zyhy-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.chinaunicom.mall.ebtp</groupId>
|
|
<artifactId>uboot-common</artifactId>
|
|
<version>2.4.1-zyhy-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.chinaunicom.mall.ebtp</groupId>
|
|
<artifactId>uboot-core</artifactId>
|
|
<version>2.4.1-zyhy-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-tx</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>aliyun-repos</id>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project>
|