Skip to content

Commit f7026f5

Browse files
author
bnasslahsen
committed
review gradle configuration
1 parent b7e75ff commit f7026f5

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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

build.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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

111114
sonarqube {

0 commit comments

Comments
 (0)