Skip to content

Commit

Permalink
do not enforce springboot version, let the application decide (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
elodani-transferwise authored Feb 1, 2022
1 parent ab7f32f commit 1339b6f
Show file tree
Hide file tree
Showing 3 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).


## [1.1.1] - 2022-02-01

* Stop enforcing springboot platform

## [1.1.0] - 2021-05-31

* JDK 11+ is required
Expand Down
10 changes: 5 additions & 5 deletions build.common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ repositories {
}

dependencies {
annotationProcessor(platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!"))
compileOnly(platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!"))
implementation(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}"))
compileOnly(platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}"))
implementation(platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}"))
testAnnotationProcessor(platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}"))

annotationProcessor 'org.projectlombok:lombok'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
Expand Down Expand Up @@ -80,4 +80,4 @@ tasks.withType(Checkstyle) {
xml.required = true
html.required = true
}
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.1.0
version=1.1.1

0 comments on commit 1339b6f

Please sign in to comment.