Skip to content

Commit

Permalink
do not enforce springBoot 2.5 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
elodani-transferwise authored Feb 1, 2022
1 parent d988e9d commit 27b7d07
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.2] - 2022-01-31

* do not enforce SpringBoot platform, let the service using us decide
* upgrade to use latest SpringBoot 2.5.x

## [0.3.1] - 2021-12-28

### Changed
Expand Down
8 changes: 4 additions & 4 deletions build.common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ repositories {
}

dependencies {
annotationProcessor platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!")
implementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!")
compileOnly platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!")
testAnnotationProcessor platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!")
annotationProcessor platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
implementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
compileOnly platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
testAnnotationProcessor platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")

annotationProcessor 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ idea.project {
}

ext {
springBootVersion = "2.5.8"
springBootVersion = "2.5.9"
}

yamlValidator {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.3.1
version=0.3.2

0 comments on commit 27b7d07

Please sign in to comment.