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.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
8
18
### Added
9
19
- #714 - Ability to disable swagger-ui default petstore url
10
20
- #713 - Add Support of Actuator endpoints using webflux
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ subprojects {
17
17
apply plugin : ' java-library'
18
18
apply plugin : ' maven-publish'
19
19
apply plugin : ' io.spring.dependency-management'
20
- apply plugin : ' signing'
21
20
22
21
sourceCompatibility = JavaVersion . VERSION_1_8
23
22
targetCompatibility = JavaVersion . VERSION_1_8
@@ -103,9 +102,13 @@ subprojects {
103
102
}
104
103
}
105
104
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
+ }
108
110
}
111
+
109
112
}
110
113
111
114
sonarqube {
You can’t perform that action at this time.
0 commit comments