Skip to content

Commit

Permalink
Testing demo dependency cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sobychacko committed Jun 16, 2020
1 parent c3aa243 commit 9207c99
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions testing-samples/testing-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,28 @@
<description>Demonstrating how to test spring cloud stream apps</description>

<parent>
<groupId>io.spring.cloud.stream.sample</groupId>
<artifactId>spring-cloud-stream-samples-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../..</relativePath>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.6.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
<spring-cloud.version>Hoxton.BUILD-SNAPSHOT</spring-cloud.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
Expand All @@ -27,6 +43,15 @@
<artifactId>spring-integration-jdbc</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-test-support</artifactId>
Expand Down

0 comments on commit 9207c99

Please sign in to comment.