Skip to content

Commit

Permalink
fixes #9: Adopt management port configuration to spring boot 2.0 setting
Browse files Browse the repository at this point in the history
  • Loading branch information
gessnerfl committed Jul 6, 2018
1 parent bf293f5 commit dac6732
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext { springBootVersion = '2.0.0.RELEASE' }
ext { springBootVersion = '2.0.3.RELEASE' }
repositories {
jcenter()
}
Expand All @@ -11,7 +11,7 @@ buildscript {

plugins {
id "com.cinnober.gradle.semver-git" version "2.3.1"
id 'org.springframework.boot' version '2.0.0.RELEASE'
id 'org.springframework.boot' version '2.0.3.RELEASE'
}

apply plugin: 'java'
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server.port=5080
management.port=5081
management.server.port=5081
management.endpoints.web.exposure.include=*

spring.profiles.active=default
Expand Down

0 comments on commit dac6732

Please sign in to comment.