Skip to content

Commit

Permalink
Upgrade to Spring Boot 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jericks committed May 22, 2020
1 parent a862b84 commit 164fa2a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id 'org.springframework.boot' version '2.2.6.RELEASE'
id 'org.springframework.boot' version '2.3.0.RELEASE'
id 'groovy'
}

apply plugin: 'groovy'
apply plugin: 'io.spring.dependency-management'

group = 'org.cugos'
version = '0.6.0'
version = '0.7.0-SNAPSHOT'
sourceCompatibility = '1.8'

jar {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion src/main/groovy/org/cugos/mbtilesserver/Rest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Rest {

@ApiIgnore
@RequestMapping(value = "/", method = RequestMethod.GET, produces = "text/html")
public ModelAndView home(Model model) {
ModelAndView home(Model model) {
model.addAttribute("name", config.mbtiles.name)
model.addAttribute("metadata", config.mbtiles.metadata)
model.addAttribute("stats", config.mbtiles.tileCounts)
Expand Down

0 comments on commit 164fa2a

Please sign in to comment.