64 lines
1.9 KiB
XML
64 lines
1.9 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-launcher</artifactId>
|
|
<version>3.0.5-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>spring-cloud-launcher</name>
|
|
<description>Spring Cloud Launcher</description>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-cli-parent</artifactId>
|
|
<version>3.0.5-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<thin-jar.version>1.0.26.RELEASE</thin-jar.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>spring-cloud-launcher-deployer</module>
|
|
<module>spring-cloud-launcher-cli</module>
|
|
<module>spring-cloud-launcher-configserver</module>
|
|
<!-- FIXME: 2.0.x -->
|
|
<!--<module>spring-cloud-launcher-dataflow</module>-->
|
|
<module>spring-cloud-launcher-eureka</module>
|
|
<module>spring-cloud-launcher-h2</module>
|
|
<!--<module>spring-cloud-launcher-kafka</module>-->
|
|
<module>spring-cloud-launcher-stubrunner</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot.experimental</groupId>
|
|
<artifactId>spring-boot-thin-layout</artifactId>
|
|
<version>${thin-jar.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
</project>
|