From 825d52feb757dda341d726cb0eb75f0de572f325 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 21 Aug 2018 17:17:07 +0100 Subject: [PATCH] Update for 1.0.1 --- docs/pom.xml | 2 +- docs/src/main/asciidoc/adapters/aws-intro.adoc | 2 +- docs/src/main/asciidoc/adapters/azure-intro.adoc | 2 +- docs/src/main/asciidoc/adapters/openwhisk-quick-start.adoc | 2 +- docs/src/main/asciidoc/ghpages.sh | 4 ++-- pom.xml | 2 +- scripts/function-registry.sh | 2 +- scripts/stream.sh | 2 +- scripts/task.sh | 2 +- scripts/web.sh | 2 +- spring-cloud-function-adapters/pom.xml | 2 +- .../spring-cloud-function-adapter-aws/README.adoc | 2 +- .../spring-cloud-function-adapter-aws/pom.xml | 2 +- .../spring-cloud-function-adapter-azure/README.adoc | 2 +- .../spring-cloud-function-adapter-azure/pom.xml | 2 +- .../spring-cloud-function-adapter-openwhisk/README.adoc | 2 +- .../spring-cloud-function-adapter-openwhisk/pom.xml | 2 +- spring-cloud-function-compiler/pom.xml | 2 +- spring-cloud-function-context/pom.xml | 2 +- spring-cloud-function-core/pom.xml | 2 +- spring-cloud-function-dependencies/pom.xml | 2 +- spring-cloud-function-deployer/pom.xml | 2 +- spring-cloud-function-deployer/src/it/support/pom.xml | 2 +- .../function-sample-aws/build.gradle | 4 ++-- spring-cloud-function-samples/function-sample-aws/pom.xml | 6 +++--- spring-cloud-function-samples/function-sample-azure/pom.xml | 4 ++-- .../src/main/azure/uppercase/function.json | 2 +- .../function-sample-compiler/build.gradle | 4 ++-- .../function-sample-compiler/pom.xml | 4 ++-- .../function-sample-pof/build.gradle | 4 ++-- spring-cloud-function-samples/function-sample-pof/pom.xml | 6 +++--- .../function-sample-pojo/build.gradle | 4 ++-- spring-cloud-function-samples/function-sample-pojo/pom.xml | 4 ++-- .../function-sample-task/build.gradle | 4 ++-- spring-cloud-function-samples/function-sample-task/pom.xml | 4 ++-- spring-cloud-function-samples/function-sample/build.gradle | 2 +- spring-cloud-function-samples/function-sample/pom.xml | 4 ++-- spring-cloud-function-samples/pom.xml | 2 +- spring-cloud-function-stream/pom.xml | 2 +- spring-cloud-function-task/pom.xml | 2 +- spring-cloud-function-web/pom.xml | 2 +- spring-cloud-starter-function-web/pom.xml | 2 +- spring-cloud-stream-binder-servlet/pom.xml | 2 +- 43 files changed, 58 insertions(+), 58 deletions(-) diff --git a/docs/pom.xml b/docs/pom.xml index b93b54311..418e829f8 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -6,7 +6,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE pom Spring Cloud Function Docs diff --git a/docs/src/main/asciidoc/adapters/aws-intro.adoc b/docs/src/main/asciidoc/adapters/aws-intro.adoc index ce8533603..2bbcbec7c 100644 --- a/docs/src/main/asciidoc/adapters/aws-intro.adoc +++ b/docs/src/main/asciidoc/adapters/aws-intro.adoc @@ -17,7 +17,7 @@ Build the sample under `spring-cloud-function-samples/function-sample-aws` and u Using the AWS command line tools it looks like this: ---- -aws lambda create-function --function-name Uppercase --role arn:aws:iam::[USERID]:role/service-role/[ROLE] --zip-file fileb://function-sample-aws/target/function-sample-aws-1.0.1.BUILD-SNAPSHOT-aws.jar --handler org.springframework.cloud.function.adapter.aws.SpringBootStreamHandler --description "Spring Cloud Function Adapter Example" --runtime java8 --region us-east-1 --timeout 30 --memory-size 1024 --publish +aws lambda create-function --function-name Uppercase --role arn:aws:iam::[USERID]:role/service-role/[ROLE] --zip-file fileb://function-sample-aws/target/function-sample-aws-1.0.1.RELEASE-aws.jar --handler org.springframework.cloud.function.adapter.aws.SpringBootStreamHandler --description "Spring Cloud Function Adapter Example" --runtime java8 --region us-east-1 --timeout 30 --memory-size 1024 --publish ---- The input type for the function in the AWS sample is a Foo with a single property called "value". So you would need this to test it: diff --git a/docs/src/main/asciidoc/adapters/azure-intro.adoc b/docs/src/main/asciidoc/adapters/azure-intro.adoc index f6948a729..2bebf4251 100644 --- a/docs/src/main/asciidoc/adapters/azure-intro.adoc +++ b/docs/src/main/asciidoc/adapters/azure-intro.adoc @@ -19,7 +19,7 @@ The Azure tooling needs to find some JSON configuration files to tell it how to ``` { - "scriptFile" : "../function-sample-azure-1.0.1.BUILD-SNAPSHOT-azure.jar", + "scriptFile" : "../function-sample-azure-1.0.1.RELEASE-azure.jar", "entryPoint" : "example.FooHandler.execute", "bindings" : [ { "type" : "httpTrigger", diff --git a/docs/src/main/asciidoc/adapters/openwhisk-quick-start.adoc b/docs/src/main/asciidoc/adapters/openwhisk-quick-start.adoc index 12eeb4558..15fdc0901 100644 --- a/docs/src/main/asciidoc/adapters/openwhisk-quick-start.adoc +++ b/docs/src/main/asciidoc/adapters/openwhisk-quick-start.adoc @@ -28,7 +28,7 @@ dependencies.function: com.example:pof:0.0.1-SNAPSHOT Copy the openwhisk runner JAR to the working directory (same directory as the properties file): ``` -cp spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/target/spring-cloud-function-adapter-openwhisk-1.0.1.BUILD-SNAPSHOT.jar runner.jar +cp spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/target/spring-cloud-function-adapter-openwhisk-1.0.1.RELEASE.jar runner.jar ``` Generate a m2 repo from the `--thin.dryrun` of the runner JAR with the above properties file: diff --git a/docs/src/main/asciidoc/ghpages.sh b/docs/src/main/asciidoc/ghpages.sh index 28c168ac6..e838d4ab4 100755 --- a/docs/src/main/asciidoc/ghpages.sh +++ b/docs/src/main/asciidoc/ghpages.sh @@ -155,7 +155,7 @@ function copy_docs_for_current_version() { file=${f#docs/target/generated-docs/*} if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then # Not ignored... - # We want users to access 1.0.1.BUILD-SNAPSHOT/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html + # We want users to access 1.0.1.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html if [[ "${file}" == "${MAIN_ADOC_VALUE}.html" ]] ; then # We don't want to copy the spring-cloud-sleuth.html # we want it to be converted to index.html @@ -197,7 +197,7 @@ function copy_docs_for_branch() { local destination=$2 if ! git ls-files -i -o --exclude-standard --directory | grep -q ^${file}$; then # Not ignored... - # We want users to access 1.0.1.BUILD-SNAPSHOT/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html + # We want users to access 1.0.1.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html if [[ ("${file}" == "${MAIN_ADOC_VALUE}.html") || ("${file}" == "${REPO_NAME}.html") ]] ; then # We don't want to copy the spring-cloud-sleuth.html # we want it to be converted to index.html diff --git a/pom.xml b/pom.xml index d3be48ebf..2c2e9f0bc 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ spring-cloud-function-parent Spring Cloud Function Parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE pom diff --git a/scripts/function-registry.sh b/scripts/function-registry.sh index 41e95f766..c1bd55603 100755 --- a/scripts/function-registry.sh +++ b/scripts/function-registry.sh @@ -1,3 +1,3 @@ #!/bin/bash -java -jar ../spring-cloud-function-compiler/target/spring-cloud-function-compiler-1.0.1.BUILD-SNAPSHOT.jar +java -jar ../spring-cloud-function-compiler/target/spring-cloud-function-compiler-1.0.1.RELEASE.jar diff --git a/scripts/stream.sh b/scripts/stream.sh index d194baa13..081d38db1 100755 --- a/scripts/stream.sh +++ b/scripts/stream.sh @@ -45,7 +45,7 @@ while getopts ":i:s:f:c:o:p:d:" opt; do esac done -java -jar ../spring-cloud-function-samples/function-sample-compiler/target/function-sample-compiler-1.0.1.BUILD-SNAPSHOT.jar\ +java -jar ../spring-cloud-function-samples/function-sample-compiler/target/function-sample-compiler-1.0.1.RELEASE.jar\ --management.security.enabled=false\ --server.port=$PORT\ --spring.cloud.function.stream.endpoint=$FUNC\ diff --git a/scripts/task.sh b/scripts/task.sh index da2e666f4..d5452384c 100755 --- a/scripts/task.sh +++ b/scripts/task.sh @@ -14,5 +14,5 @@ while getopts ":s:f:c:" opt; do esac done -java -noverify -XX:TieredStopAtLevel=1 -Xss256K -Xms16M -Xmx256M -XX:MaxMetaspaceSize=128M -jar ../spring-cloud-function-task/target/spring-cloud-function-task-1.0.1.BUILD-SNAPSHOT.jar\ +java -noverify -XX:TieredStopAtLevel=1 -Xss256K -Xms16M -Xmx256M -XX:MaxMetaspaceSize=128M -jar ../spring-cloud-function-task/target/spring-cloud-function-task-1.0.1.RELEASE.jar\ --lambda.supplier=$SUPP --lambda.function=$FUNC --lambda.consumer=$CONS diff --git a/scripts/web.sh b/scripts/web.sh index 0e56824fc..a18d027f3 100755 --- a/scripts/web.sh +++ b/scripts/web.sh @@ -20,7 +20,7 @@ while getopts ":s:f:c:p:" opt; do esac done -java -jar ../spring-cloud-function-samples/function-sample-compiler/target/function-sample-compiler-1.0.1.BUILD-SNAPSHOT.jar\ +java -jar ../spring-cloud-function-samples/function-sample-compiler/target/function-sample-compiler-1.0.1.RELEASE.jar\ --spring.cloud.function.import.$FUNC.type=$TYPE\ --spring.cloud.function.import.$FUNC.location=file:///tmp/function-registry/$TYPE's'/$FUNC.fun\ --management.security.enabled=false\ diff --git a/spring-cloud-function-adapters/pom.xml b/spring-cloud-function-adapters/pom.xml index 4b625d2ff..de188ce59 100644 --- a/spring-cloud-function-adapters/pom.xml +++ b/spring-cloud-function-adapters/pom.xml @@ -9,7 +9,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE spring-cloud-function-adapter-parent diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-aws/README.adoc b/spring-cloud-function-adapters/spring-cloud-function-adapter-aws/README.adoc index f9fad1b62..f39ef033a 100644 --- a/spring-cloud-function-adapters/spring-cloud-function-adapter-aws/README.adoc +++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-aws/README.adoc @@ -21,7 +21,7 @@ Build the sample under `spring-cloud-function-samples/function-sample-aws` and u Using the AWS command line tools it looks like this: ---- -aws lambda create-function --function-name Uppercase --role arn:aws:iam::[USERID]:role/service-role/[ROLE] --zip-file fileb://function-sample-aws/target/function-sample-aws-1.0.1.BUILD-SNAPSHOT-aws.jar --handler org.springframework.cloud.function.adapter.aws.SpringBootStreamHandler --description "Spring Cloud Function Adapter Example" --runtime java8 --region us-east-1 --timeout 30 --memory-size 1024 --publish +aws lambda create-function --function-name Uppercase --role arn:aws:iam::[USERID]:role/service-role/[ROLE] --zip-file fileb://function-sample-aws/target/function-sample-aws-1.0.1.RELEASE-aws.jar --handler org.springframework.cloud.function.adapter.aws.SpringBootStreamHandler --description "Spring Cloud Function Adapter Example" --runtime java8 --region us-east-1 --timeout 30 --memory-size 1024 --publish ---- The input type for the function in the AWS sample is a Foo with a single property called "value". So you would need this to test it: diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-aws/pom.xml b/spring-cloud-function-adapters/spring-cloud-function-adapter-aws/pom.xml index ef9f9ce3c..03fa5bfa3 100644 --- a/spring-cloud-function-adapters/spring-cloud-function-adapter-aws/pom.xml +++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-aws/pom.xml @@ -12,7 +12,7 @@ org.springframework.cloud spring-cloud-function-adapter-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-azure/README.adoc b/spring-cloud-function-adapters/spring-cloud-function-adapter-azure/README.adoc index 86557b73f..fde94ab65 100644 --- a/spring-cloud-function-adapters/spring-cloud-function-adapter-azure/README.adoc +++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-azure/README.adoc @@ -24,7 +24,7 @@ The Azure tooling needs to find some JSON configuration files to tell it how to ``` { - "scriptFile" : "../function-sample-azure-1.0.1.BUILD-SNAPSHOT-azure.jar", + "scriptFile" : "../function-sample-azure-1.0.1.RELEASE-azure.jar", "entryPoint" : "example.FooHandler.execute", "bindings" : [ { "type" : "httpTrigger", diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-azure/pom.xml b/spring-cloud-function-adapters/spring-cloud-function-adapter-azure/pom.xml index 644bc90d2..3f5e7c9fc 100644 --- a/spring-cloud-function-adapters/spring-cloud-function-adapter-azure/pom.xml +++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-azure/pom.xml @@ -12,7 +12,7 @@ org.springframework.cloud spring-cloud-function-adapter-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/README.adoc b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/README.adoc index 21fc1061c..2e28a1c43 100644 --- a/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/README.adoc +++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/README.adoc @@ -32,7 +32,7 @@ dependencies.function: com.example:pof:0.0.1-SNAPSHOT Copy the openwhisk runner JAR to the working directory (same directory as the properties file): ``` -cp spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/target/spring-cloud-function-adapter-openwhisk-1.0.1.BUILD-SNAPSHOT.jar runner.jar +cp spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/target/spring-cloud-function-adapter-openwhisk-1.0.1.RELEASE.jar runner.jar ``` Generate a m2 repo from the `--thin.dryrun` of the runner JAR with the above properties file: diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/pom.xml b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/pom.xml index c5e719fb5..7978f1859 100644 --- a/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/pom.xml +++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/pom.xml @@ -12,7 +12,7 @@ org.springframework.cloud spring-cloud-function-adapter-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-function-compiler/pom.xml b/spring-cloud-function-compiler/pom.xml index 909125fe7..2acf72d2e 100644 --- a/spring-cloud-function-compiler/pom.xml +++ b/spring-cloud-function-compiler/pom.xml @@ -10,7 +10,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-function-context/pom.xml b/spring-cloud-function-context/pom.xml index e18106fed..d03f9f14e 100644 --- a/spring-cloud-function-context/pom.xml +++ b/spring-cloud-function-context/pom.xml @@ -11,7 +11,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-function-core/pom.xml b/spring-cloud-function-core/pom.xml index 5fc697fce..c9c5ebb2b 100644 --- a/spring-cloud-function-core/pom.xml +++ b/spring-cloud-function-core/pom.xml @@ -10,7 +10,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-function-dependencies/pom.xml b/spring-cloud-function-dependencies/pom.xml index 57469d345..c13b473f7 100644 --- a/spring-cloud-function-dependencies/pom.xml +++ b/spring-cloud-function-dependencies/pom.xml @@ -9,7 +9,7 @@ spring-cloud-function-dependencies - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE pom Spring Cloud Function Dependencies Spring Cloud Function Dependencies diff --git a/spring-cloud-function-deployer/pom.xml b/spring-cloud-function-deployer/pom.xml index cdbd780fe..a0295cb5c 100644 --- a/spring-cloud-function-deployer/pom.xml +++ b/spring-cloud-function-deployer/pom.xml @@ -11,7 +11,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-function-deployer/src/it/support/pom.xml b/spring-cloud-function-deployer/src/it/support/pom.xml index 5e488beab..8360aacf4 100644 --- a/spring-cloud-function-deployer/src/it/support/pom.xml +++ b/spring-cloud-function-deployer/src/it/support/pom.xml @@ -17,7 +17,7 @@ 1.8 - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE 1.0.10.RELEASE 3.2.0.M1 diff --git a/spring-cloud-function-samples/function-sample-aws/build.gradle b/spring-cloud-function-samples/function-sample-aws/build.gradle index 03a29db08..86e0ea46d 100644 --- a/spring-cloud-function-samples/function-sample-aws/build.gradle +++ b/spring-cloud-function-samples/function-sample-aws/build.gradle @@ -26,7 +26,7 @@ apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot.experimental.thin-launcher' group = 'io.spring.sample' -version = '1.0.1.BUILD-SNAPSHOT' +version = '1.0.1.RELEASE' sourceCompatibility = 1.8 targetCompatibility = 1.8 @@ -38,7 +38,7 @@ repositories { } ext { - springCloudFunctionVersion = "1.0.1.BUILD-SNAPSHOT" + springCloudFunctionVersion = "1.0.1.RELEASE" awsLambdaEventsVersion = "1.2.1" awsLambdaCoreVersion = "1.1.0" } diff --git a/spring-cloud-function-samples/function-sample-aws/pom.xml b/spring-cloud-function-samples/function-sample-aws/pom.xml index 99b623109..f9be4a529 100644 --- a/spring-cloud-function-samples/function-sample-aws/pom.xml +++ b/spring-cloud-function-samples/function-sample-aws/pom.xml @@ -5,7 +5,7 @@ io.spring.sample function-sample-aws - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE jar function-sample-aws @@ -25,8 +25,8 @@ 1.0.10.RELEASE 2.0.2 3.1.2.RELEASE - 1.0.1.BUILD-SNAPSHOT - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE + 1.0.1.RELEASE example.Config diff --git a/spring-cloud-function-samples/function-sample-azure/pom.xml b/spring-cloud-function-samples/function-sample-azure/pom.xml index 92e5dce8a..e17d7565f 100644 --- a/spring-cloud-function-samples/function-sample-azure/pom.xml +++ b/spring-cloud-function-samples/function-sample-azure/pom.xml @@ -5,7 +5,7 @@ io.spring.sample function-sample-azure - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE jar function-sample-azure @@ -52,7 +52,7 @@ org.springframework.cloud spring-cloud-function-dependencies - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE pom import diff --git a/spring-cloud-function-samples/function-sample-azure/src/main/azure/uppercase/function.json b/spring-cloud-function-samples/function-sample-azure/src/main/azure/uppercase/function.json index 56313cdc4..749c88543 100644 --- a/spring-cloud-function-samples/function-sample-azure/src/main/azure/uppercase/function.json +++ b/spring-cloud-function-samples/function-sample-azure/src/main/azure/uppercase/function.json @@ -1,5 +1,5 @@ { - "scriptFile": "../function-sample-azure-1.0.1.BUILD-SNAPSHOT-azure.jar", + "scriptFile": "../function-sample-azure-1.0.1.RELEASE-azure.jar", "entryPoint": "example.FooHandler.execute", "bindings": [ { diff --git a/spring-cloud-function-samples/function-sample-compiler/build.gradle b/spring-cloud-function-samples/function-sample-compiler/build.gradle index c5f944384..6cc9e0285 100644 --- a/spring-cloud-function-samples/function-sample-compiler/build.gradle +++ b/spring-cloud-function-samples/function-sample-compiler/build.gradle @@ -22,7 +22,7 @@ apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot.experimental.thin-launcher' group = 'io.spring.sample' -version = '1.0.1.BUILD-SNAPSHOT' +version = '1.0.1.RELEASE' sourceCompatibility = 1.8 targetCompatibility = 1.8 @@ -34,7 +34,7 @@ repositories { } ext { - springCloudFunctionVersion = "1.0.1.BUILD-SNAPSHOT" + springCloudFunctionVersion = "1.0.1.RELEASE" } ext['reactor.version'] = "3.1.7.RELEASE" diff --git a/spring-cloud-function-samples/function-sample-compiler/pom.xml b/spring-cloud-function-samples/function-sample-compiler/pom.xml index e2c094438..9864f94a2 100644 --- a/spring-cloud-function-samples/function-sample-compiler/pom.xml +++ b/spring-cloud-function-samples/function-sample-compiler/pom.xml @@ -5,7 +5,7 @@ io.spring.sample function-sample-compiler - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE jar spring-cloud-function-sample-compiler Spring Cloud Function Lambda Compiling Support @@ -19,7 +19,7 @@ 1.8 - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE Elmhurst.RELEASE 3.1.2.RELEASE 1.0.10.RELEASE diff --git a/spring-cloud-function-samples/function-sample-pof/build.gradle b/spring-cloud-function-samples/function-sample-pof/build.gradle index c5f944384..6cc9e0285 100644 --- a/spring-cloud-function-samples/function-sample-pof/build.gradle +++ b/spring-cloud-function-samples/function-sample-pof/build.gradle @@ -22,7 +22,7 @@ apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot.experimental.thin-launcher' group = 'io.spring.sample' -version = '1.0.1.BUILD-SNAPSHOT' +version = '1.0.1.RELEASE' sourceCompatibility = 1.8 targetCompatibility = 1.8 @@ -34,7 +34,7 @@ repositories { } ext { - springCloudFunctionVersion = "1.0.1.BUILD-SNAPSHOT" + springCloudFunctionVersion = "1.0.1.RELEASE" } ext['reactor.version'] = "3.1.7.RELEASE" diff --git a/spring-cloud-function-samples/function-sample-pof/pom.xml b/spring-cloud-function-samples/function-sample-pof/pom.xml index 6ba118e27..29ed9dcd6 100644 --- a/spring-cloud-function-samples/function-sample-pof/pom.xml +++ b/spring-cloud-function-samples/function-sample-pof/pom.xml @@ -4,7 +4,7 @@ io.spring.sample function-sample-pof - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE jar function-sample-pof Spring Cloud Function Web Support @@ -21,8 +21,8 @@ UTF-8 1.8 3.1.2.RELEASE - 1.0.1.BUILD-SNAPSHOT - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE + 1.0.1.RELEASE diff --git a/spring-cloud-function-samples/function-sample-pojo/build.gradle b/spring-cloud-function-samples/function-sample-pojo/build.gradle index 35227ab0c..c151e257d 100644 --- a/spring-cloud-function-samples/function-sample-pojo/build.gradle +++ b/spring-cloud-function-samples/function-sample-pojo/build.gradle @@ -22,7 +22,7 @@ apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot.experimental.thin-launcher' group = 'io.spring.sample' -version = '1.0.1.BUILD-SNAPSHOT' +version = '1.0.1.RELEASE' sourceCompatibility = 1.8 targetCompatibility = 1.8 @@ -34,7 +34,7 @@ repositories { } ext { - springCloudFunctionVersion = "1.0.1.BUILD-SNAPSHOT" + springCloudFunctionVersion = "1.0.1.RELEASE" } ext['reactor.version'] = "3.1.7.RELEASE" diff --git a/spring-cloud-function-samples/function-sample-pojo/pom.xml b/spring-cloud-function-samples/function-sample-pojo/pom.xml index 981aeae7a..4123cd819 100644 --- a/spring-cloud-function-samples/function-sample-pojo/pom.xml +++ b/spring-cloud-function-samples/function-sample-pojo/pom.xml @@ -5,7 +5,7 @@ io.spring.sample function-sample-pojo - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE jar function-sample-pojo Spring Cloud Function Web Support @@ -19,7 +19,7 @@ 1.8 - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE 1.0.11.RELEASE diff --git a/spring-cloud-function-samples/function-sample-task/build.gradle b/spring-cloud-function-samples/function-sample-task/build.gradle index 02b5334d3..3aff2b1d7 100644 --- a/spring-cloud-function-samples/function-sample-task/build.gradle +++ b/spring-cloud-function-samples/function-sample-task/build.gradle @@ -22,7 +22,7 @@ apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot.experimental.thin-launcher' group = 'io.spring.sample' -version = '1.0.1.BUILD-SNAPSHOT' +version = '1.0.1.RELEASE' sourceCompatibility = 1.8 targetCompatibility = 1.8 @@ -34,7 +34,7 @@ repositories { } ext { - springCloudFunctionVersion = "1.0.1.BUILD-SNAPSHOT" + springCloudFunctionVersion = "1.0.1.RELEASE" } ext['reactor.version'] = "3.1.7.RELEASE" diff --git a/spring-cloud-function-samples/function-sample-task/pom.xml b/spring-cloud-function-samples/function-sample-task/pom.xml index 4ad6d2126..f6c61190a 100644 --- a/spring-cloud-function-samples/function-sample-task/pom.xml +++ b/spring-cloud-function-samples/function-sample-task/pom.xml @@ -5,7 +5,7 @@ io.spring.sample function-sample-task - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE jar function-sample-task Spring Cloud Function Task Support @@ -19,7 +19,7 @@ 1.8 - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE 1.0.10.RELEASE 3.1.2.RELEASE diff --git a/spring-cloud-function-samples/function-sample/build.gradle b/spring-cloud-function-samples/function-sample/build.gradle index 9bf4c053e..ed6d9d60e 100644 --- a/spring-cloud-function-samples/function-sample/build.gradle +++ b/spring-cloud-function-samples/function-sample/build.gradle @@ -34,7 +34,7 @@ repositories { } ext { - springCloudFunctionVersion = "1.0.1.BUILD-SNAPSHOT" + springCloudFunctionVersion = "1.0.1.RELEASE" } ext['reactor.version'] = "3.1.7.RELEASE" diff --git a/spring-cloud-function-samples/function-sample/pom.xml b/spring-cloud-function-samples/function-sample/pom.xml index 722d61f85..c9ba79543 100644 --- a/spring-cloud-function-samples/function-sample/pom.xml +++ b/spring-cloud-function-samples/function-sample/pom.xml @@ -5,7 +5,7 @@ io.spring.sample function-sample - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE jar function-sample Spring Cloud Function Web Support @@ -19,7 +19,7 @@ 1.8 - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE 3.1.2.RELEASE 1.0.10.RELEASE diff --git a/spring-cloud-function-samples/pom.xml b/spring-cloud-function-samples/pom.xml index c9872b22f..06689626b 100644 --- a/spring-cloud-function-samples/pom.xml +++ b/spring-cloud-function-samples/pom.xml @@ -9,7 +9,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-function-stream/pom.xml b/spring-cloud-function-stream/pom.xml index 45ebe27c3..7141cbe2d 100644 --- a/spring-cloud-function-stream/pom.xml +++ b/spring-cloud-function-stream/pom.xml @@ -11,7 +11,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-function-task/pom.xml b/spring-cloud-function-task/pom.xml index 944570302..1d6d144cc 100644 --- a/spring-cloud-function-task/pom.xml +++ b/spring-cloud-function-task/pom.xml @@ -10,7 +10,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-function-web/pom.xml b/spring-cloud-function-web/pom.xml index 57bebfed1..d70488d6e 100644 --- a/spring-cloud-function-web/pom.xml +++ b/spring-cloud-function-web/pom.xml @@ -11,7 +11,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE diff --git a/spring-cloud-starter-function-web/pom.xml b/spring-cloud-starter-function-web/pom.xml index e73cf6ce3..ac6872321 100644 --- a/spring-cloud-starter-function-web/pom.xml +++ b/spring-cloud-starter-function-web/pom.xml @@ -5,7 +5,7 @@ org.springframework.cloud spring-cloud-function-parent - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE .. spring-cloud-starter-function-web diff --git a/spring-cloud-stream-binder-servlet/pom.xml b/spring-cloud-stream-binder-servlet/pom.xml index af8adfa18..68f8a6839 100644 --- a/spring-cloud-stream-binder-servlet/pom.xml +++ b/spring-cloud-stream-binder-servlet/pom.xml @@ -4,7 +4,7 @@ 4.0.0 spring-cloud-stream-binder-servlet - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE jar spring-cloud-stream-binder-servlet Servlet binder implementation