File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,17 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7- ## [ 1.4.1] - 2020-06-XX
7+ ## [ 1.4.2] - 2020-06-25
8+ ### Changed
9+ - Upgrade swagger-ui to 3.27.0
10+ - Migration from maven to gradle
11+ ### Fixed
12+ - #729 - ClassNotFoundException: DefaultedPageable
13+ - #736 - Failed load UI behind reverse proxy (Failed to load API definition)
14+ - #728 - Maven enforcer error
15+ - #744 - Impossible to configure swaggerurl programmatically
16+
17+ ## [ 1.4.1] - 2020-06-09
818### Added
919- #714 - Ability to disable swagger-ui default petstore url
1020- #713 - Add Support of Actuator endpoints using webflux
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ subprojects {
1717 apply plugin : ' java-library'
1818 apply plugin : ' maven-publish'
1919 apply plugin : ' io.spring.dependency-management'
20- apply plugin : ' signing'
2120
2221 sourceCompatibility = JavaVersion . VERSION_1_8
2322 targetCompatibility = JavaVersion . VERSION_1_8
@@ -103,9 +102,13 @@ subprojects {
103102 }
104103 }
105104
106- signing {
107- sign publishing. publications. mavenJava
105+ if (project. hasProperty(" signing.keyId" )) {
106+ apply plugin : ' signing'
107+ signing {
108+ sign publishing. publications. mavenJava
109+ }
108110 }
111+
109112}
110113
111114sonarqube {
You can’t perform that action at this time.
0 commit comments