Files
stream-applications-accepta…/spring-cloud-stream-local-acceptance-tests/pom.xml
Soby Chacko 27a2cb4c63 Initial Commit
Root pom.xml - spring-cloud-stream-acceptance-tests-parent
Local acceptance tests based on spring-cloud-stream-samples
2018-08-16 16:00:11 -04:00

47 lines
1.7 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>
<artifactId>spring-cloud-stream-local-acceptance-tests</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>spring-cloud-stream-local-acceptance-tests</name>
<description>Spring Cloud Stream Local Acceptance Tests</description>
<parent>
<groupId>io.spring.cloud.stream.acceptance</groupId>
<artifactId>spring-cloud-stream-acceptance-tests-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>1.1.9</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>