Skip to content

Commit 4529753

Browse files
author
gm2552
committed
Updating to spring boot 2.1.1
Adding sample cloudfoundry manifest.yml file.
1 parent 3c139a1 commit 4529753

2 files changed

Lines changed: 17 additions & 4 deletions

File tree

manifest.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
applications:
3+
- name: direct-smtp-mq-gateway
4+
instances: 1
5+
buildpack: java_buildpack
6+
path: target/direct-smtp-mq-gateway-6.0-SNAPSHOT.jar
7+
env:
8+
spring.cloud.config.label: master
9+
services:
10+
- directhisp-config-server
11+
- directhisp-rabbit
12+
routes:
13+
- route: cf-tcpapps.io:3398

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<groupId>org.springframework.boot</groupId>
2020
<artifactId>spring-boot-starter-parent</artifactId>
21-
<version>2.1.0.RELEASE</version>
21+
<version>2.1.1.RELEASE</version>
2222
</parent>
2323
<developers>
2424
<developer>
@@ -53,21 +53,21 @@
5353
<dependency>
5454
<groupId>org.springframework.boot</groupId>
5555
<artifactId>spring-boot-dependencies</artifactId>
56-
<version>2.1.0.RELEASE</version>
56+
<version>2.1.1.RELEASE</version>
5757
<type>pom</type>
5858
<scope>import</scope>
5959
</dependency>
6060
<dependency>
6161
<groupId>io.pivotal.spring.cloud</groupId>
6262
<artifactId>spring-cloud-services-dependencies</artifactId>
63-
<version>2.0.1.RELEASE</version>
63+
<version>2.0.3.RELEASE</version>
6464
<type>pom</type>
6565
<scope>import</scope>
6666
</dependency>
6767
<dependency>
6868
<groupId>org.springframework.cloud</groupId>
6969
<artifactId>spring-cloud-starter-parent</artifactId>
70-
<version>Greenwich.M1</version>
70+
<version>Greenwich.M3</version>
7171
<type>pom</type>
7272
<scope>import</scope>
7373
</dependency>

0 commit comments

Comments
 (0)