From 61c789a3768610f0a8eea28c1fb61a399e2b1e31 Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Mon, 20 Nov 2017 11:47:54 +0100 Subject: [PATCH 1/2] Preparing for releaser GA release --- config/releaser.yml | 2 +- scripts/generateDocs.sh | 4 ++-- scripts/noIntegration.sh | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/releaser.yml b/config/releaser.yml index 3b7005f0ac..547cd9982c 100644 --- a/config/releaser.yml +++ b/config/releaser.yml @@ -1,3 +1,3 @@ -releaser.maven.buildCommand: ./scripts/noIntegration.sh +releaser.maven.buildCommand: ./scripts/noIntegration.sh {{systemProps}} releaser.gradle.gradlePropsSubstitution: verifierVersion: spring-cloud-contract \ No newline at end of file diff --git a/scripts/generateDocs.sh b/scripts/generateDocs.sh index c730dd17c3..25cb77e07d 100755 --- a/scripts/generateDocs.sh +++ b/scripts/generateDocs.sh @@ -7,10 +7,10 @@ set -e echo "Generating docs for Spring Cloud Contract" echo "Building main docs" -./mvnw clean install -P docs -DskipTests=true --pl docs +./mvnw clean install -P docs -DskipTests=true --pl docs "${@}" echo "Building maven plugin docs" -./mvnw site -DskipTests=true --pl spring-cloud-contract-tools/spring-cloud-contract-maven-plugin +./mvnw site -DskipTests=true --pl spring-cloud-contract-tools/spring-cloud-contract-maven-plugin "${@}" echo "Copying generated maven plugin docs to main docs" cp -r spring-cloud-contract-tools/spring-cloud-contract-maven-plugin/target/site docs/target/generated-docs/spring-cloud-contract-maven-plugin \ No newline at end of file diff --git a/scripts/noIntegration.sh b/scripts/noIntegration.sh index ce46fbd90e..81f07dec68 100755 --- a/scripts/noIntegration.sh +++ b/scripts/noIntegration.sh @@ -6,5 +6,5 @@ FOLDER=`pwd` set -e -./mvnw clean install -${FOLDER}/scripts/generateDocs.sh \ No newline at end of file +./mvnw clean install "${@}" +${FOLDER}/scripts/generateDocs.sh "${@}" \ No newline at end of file From 8b69916754e5e4a2870c21784d4d140d3259e492 Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Mon, 20 Nov 2017 11:48:48 +0100 Subject: [PATCH 2/2] Preparing for releaser GA release --- scripts/generateDocs.sh | 4 ++-- scripts/noIntegration.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/generateDocs.sh b/scripts/generateDocs.sh index 25cb77e07d..cf55f0fe64 100755 --- a/scripts/generateDocs.sh +++ b/scripts/generateDocs.sh @@ -7,10 +7,10 @@ set -e echo "Generating docs for Spring Cloud Contract" echo "Building main docs" -./mvnw clean install -P docs -DskipTests=true --pl docs "${@}" +./mvnw clean install -P docs -DskipTests=true --pl docs ${@} echo "Building maven plugin docs" -./mvnw site -DskipTests=true --pl spring-cloud-contract-tools/spring-cloud-contract-maven-plugin "${@}" +./mvnw site -DskipTests=true --pl spring-cloud-contract-tools/spring-cloud-contract-maven-plugin ${@} echo "Copying generated maven plugin docs to main docs" cp -r spring-cloud-contract-tools/spring-cloud-contract-maven-plugin/target/site docs/target/generated-docs/spring-cloud-contract-maven-plugin \ No newline at end of file diff --git a/scripts/noIntegration.sh b/scripts/noIntegration.sh index 81f07dec68..e8dad9c611 100755 --- a/scripts/noIntegration.sh +++ b/scripts/noIntegration.sh @@ -6,5 +6,5 @@ FOLDER=`pwd` set -e -./mvnw clean install "${@}" -${FOLDER}/scripts/generateDocs.sh "${@}" \ No newline at end of file +./mvnw clean install ${@} +${FOLDER}/scripts/generateDocs.sh ${@} \ No newline at end of file