fabric-samples/distributed-deploy/bcp-install-main/pom.xml
zeoio 958749e76c distributed-deploy: add distributed deploy tools for prod env
Signed-off-by: zeoio <kinsleer@outlook.com>
2020-04-29 10:01:39 +08:00

55 lines
No EOL
1.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">
<parent>
<artifactId>bcp-install</artifactId>
<groupId>com.cgb</groupId>
<version>1.0.0-RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>bcp-install-main</artifactId>
<dependencies>
<dependency>
<groupId>com.cgb</groupId>
<artifactId>bcp-install-biz</artifactId>
<version>1.0.0-RELEASE</version>
</dependency>
<dependency>
<groupId>com.cgb</groupId>
<artifactId>bcp-install-api</artifactId>
<version>1.0.0-RELEASE</version>
</dependency>
<dependency>
<groupId>com.cgb</groupId>
<artifactId>bcp-install-common</artifactId>
<version>1.0.0-RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.1.8.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<version>2.1.6.RELEASE</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>bcp-install</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>