Updates based on PR feedback
This commit is contained in:
@@ -383,7 +383,6 @@ task codeCoverageReport(type: JacocoReport) {
|
||||
|
||||
wrapper {
|
||||
gradleVersion = "6.5.1"
|
||||
distributionType = Wrapper.DistributionType.ALL
|
||||
}
|
||||
|
||||
def getDocumentationProjects() {
|
||||
|
||||
@@ -45,7 +45,7 @@ jobs:
|
||||
disable_checksum_uploads: true
|
||||
artifact_set:
|
||||
- include:
|
||||
- "/**/spring-cloud-app-broker-*-docs.zip"
|
||||
- "/**/spring-cloud-app-broker-docs-*.zip"
|
||||
properties:
|
||||
"zip.type": "docs"
|
||||
"zip.deployed": "false"
|
||||
|
||||
@@ -44,7 +44,7 @@ while [ $artifacts_published == "false" ] && [ $retry_counter -lt $WAIT_ATTEMPTS
|
||||
sleep $WAIT_TIME
|
||||
done
|
||||
if [[ $artifacts_published == "false" ]]; then
|
||||
echo "Failed to ditribute"
|
||||
echo "Failed to distribute"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
@@ -3,16 +3,12 @@ group=org.springframework.cloud
|
||||
|
||||
onlyShowStandardStreamsOnTestFailure = false
|
||||
|
||||
assertjVersion = 3.13.2
|
||||
awaitilityVersion = 4.0.2
|
||||
blockHoundVersion = 1.0.3.RELEASE
|
||||
cfJavaClientVersion = 4.7.0.RELEASE
|
||||
checkstyleVersion = 8.33
|
||||
commonsTextVersion = 1.8
|
||||
immutablesVersion = 2.8.8
|
||||
junitJupiterVersion = 5.5.2
|
||||
junitPlatformLauncherVersion = 1.6.2
|
||||
mockitoVersion = 3.1.0
|
||||
openServiceBrokerVersion = 3.2.0-SNAPSHOT
|
||||
pmdVersion = 6.24.0
|
||||
springBootVersion = 2.3.1.RELEASE
|
||||
|
||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
pluginManagement {
|
||||
plugins {
|
||||
id "io.spring.dependency-management" version "1.0.9.RELEASE"
|
||||
id "org.springframework.boot" version "2.2.7.RELEASE"
|
||||
id "com.jfrog.artifactory" version "4.15.2"
|
||||
id "org.springframework.boot" version "${springBootVersion}"
|
||||
id "io.spring.nohttp" version "0.0.5.RELEASE"
|
||||
id 'org.asciidoctor.jvm.pdf' version '3.1.0'
|
||||
id 'org.asciidoctor.jvm.convert' version '3.1.0'
|
||||
|
||||
@@ -27,14 +27,14 @@ dependencies {
|
||||
|
||||
implementation "org.apache.commons:commons-text:${commonsTextVersion}"
|
||||
|
||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}"
|
||||
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junitPlatformLauncherVersion}"
|
||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
|
||||
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
|
||||
|
||||
testImplementation "org.springframework:spring-test"
|
||||
testImplementation "io.projectreactor:reactor-test"
|
||||
testImplementation "io.projectreactor.tools:blockhound-junit-platform:${blockHoundVersion}"
|
||||
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}"
|
||||
testImplementation "org.assertj:assertj-core:${assertjVersion}"
|
||||
testImplementation "org.mockito:mockito-core:${mockitoVersion}"
|
||||
testImplementation "org.mockito:mockito-junit-jupiter:${mockitoVersion}"
|
||||
testImplementation "org.junit.jupiter:junit-jupiter-api"
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
testImplementation "org.mockito:mockito-core"
|
||||
testImplementation "org.mockito:mockito-junit-jupiter"
|
||||
}
|
||||
|
||||
@@ -29,10 +29,10 @@ dependencies {
|
||||
implementation enforcedPlatform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
|
||||
implementation project(":spring-cloud-app-broker-core")
|
||||
implementation "org.springframework.boot:spring-boot-starter"
|
||||
implementation "org.springframework.boot:spring-boot-starter-data-r2dbc"
|
||||
implementation "org.springframework.boot:spring-boot-starter-security"
|
||||
implementation "org.springframework.boot:spring-boot-starter-tomcat"
|
||||
implementation "io.projectreactor:reactor-core"
|
||||
implementation "org.springframework.data:spring-data-r2dbc:1.1.1.RELEASE"
|
||||
implementation "io.r2dbc:r2dbc-h2:0.8.0.RELEASE"
|
||||
|
||||
docs "io.spring.docresources:spring-doc-resources:0.2.1.RELEASE@zip"
|
||||
|
||||
Reference in New Issue
Block a user