40 lines
1.3 KiB
XML
40 lines
1.3 KiB
XML
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>commons-cf</artifactId>
|
|
<name>commons-cf</name>
|
|
<description>Common code related to 'accessing Cloud Foundry'</description>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.ide.vscode</groupId>
|
|
<artifactId>commons-parent</artifactId>
|
|
<version>1.62.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.ide.vscode</groupId>
|
|
<artifactId>commons-util</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.cloudfoundry</groupId>
|
|
<artifactId>cloudfoundry-client-reactor</artifactId>
|
|
<version>${cloudfoundry-client-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.cloudfoundry</groupId>
|
|
<artifactId>cloudfoundry-operations</artifactId>
|
|
<version>${cloudfoundry-client-version}</version>
|
|
</dependency>
|
|
<!-- Test harness -->
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-all</artifactId>
|
|
<version>${mockito-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|