diff --git a/README.adoc b/README.adoc
index 3d99877fe..289415e41 100644
--- a/README.adoc
+++ b/README.adoc
@@ -62,7 +62,7 @@ endpoints and/or message stream listeners/publishers with RabbitMQ, Kafka etc.
* _Adapters to expose function to the outside world as HTTP endpoints etc._
* _Deploying a JAR file containing such an application context with an isolated classloader, so that you can pack them together in a single JVM._
* _Compiling strings which are Java function bodies into bytecode, and then turning them into `@Beans` that can be wrapped as above._
-* _Adapters for https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-aws[AWS Lambda], https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-azure[Azure], https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk[Apache OpenWhisk] and possibly other "serverless" service providers._
+* _Adapters for https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-aws[AWS Lambda], https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-azure[Azure], https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-gcp[Google Cloud Functions], https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk[Apache OpenWhisk] and possibly other "serverless" service providers._
== Getting Started
@@ -164,6 +164,11 @@ https://eclipse.org[Eclipse] when working with the code. We use the
https://eclipse.org/m2e/[m2eclipse] eclipse plugin for maven support. Other IDEs and tools
should also work without issue as long as they use Maven 3.3.3 or better.
+==== Activate the Spring Maven profile
+Spring Cloud projects require the 'spring' Maven profile to be activated to resolve
+the spring milestone and snapshot repositories. Use your preferred IDE to set this
+profile to be active, or you may experience build errors.
+
==== Importing into eclipse with m2eclipse
We recommend the https://eclipse.org/m2e/[m2eclipse] eclipse plugin when working with
eclipse. If you don't already have m2eclipse installed it is available from the "eclipse
diff --git a/docs/pom.xml b/docs/pom.xml
index 9d49f58b2..4cab04d24 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -7,7 +7,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
pom
Spring Cloud Function Docs
diff --git a/pom.xml b/pom.xml
index 817fa4b7e..e46f28464 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,13 +6,13 @@
spring-cloud-function-parent
Spring Cloud Function Parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
pom
org.springframework.cloud
spring-cloud-build
- 2.3.1.BUILD-SNAPSHOT
+ 2.3.0.RELEASE
diff --git a/spring-cloud-function-adapters/pom.xml b/spring-cloud-function-adapters/pom.xml
index b699775df..55e0db3c0 100644
--- a/spring-cloud-function-adapters/pom.xml
+++ b/spring-cloud-function-adapters/pom.xml
@@ -10,7 +10,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
spring-cloud-function-adapter-parent
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 b6884b33f..6e146fcdb 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
@@ -13,7 +13,7 @@
org.springframework.cloud
spring-cloud-function-adapter-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
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 4963d2773..505baaf4d 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
@@ -13,7 +13,7 @@
org.springframework.cloud
spring-cloud-function-adapter-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-gcp/pom.xml b/spring-cloud-function-adapters/spring-cloud-function-adapter-gcp/pom.xml
index c795d9380..01c2c4962 100644
--- a/spring-cloud-function-adapters/spring-cloud-function-adapter-gcp/pom.xml
+++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-gcp/pom.xml
@@ -11,7 +11,7 @@
spring-cloud-function-adapter-parent
org.springframework.cloud
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
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 bbda59952..4847d4163 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
@@ -13,7 +13,7 @@
org.springframework.cloud
spring-cloud-function-adapter-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-compiler/pom.xml b/spring-cloud-function-compiler/pom.xml
index 4f356fd52..a859b6a9b 100644
--- a/spring-cloud-function-compiler/pom.xml
+++ b/spring-cloud-function-compiler/pom.xml
@@ -12,7 +12,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-context/pom.xml b/spring-cloud-function-context/pom.xml
index 2511f4b29..16e5e5011 100644
--- a/spring-cloud-function-context/pom.xml
+++ b/spring-cloud-function-context/pom.xml
@@ -12,7 +12,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-core/pom.xml b/spring-cloud-function-core/pom.xml
index 829d1c154..dcf075dd4 100644
--- a/spring-cloud-function-core/pom.xml
+++ b/spring-cloud-function-core/pom.xml
@@ -12,7 +12,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-dependencies/pom.xml b/spring-cloud-function-dependencies/pom.xml
index 9137537e1..b8f1a24cd 100644
--- a/spring-cloud-function-dependencies/pom.xml
+++ b/spring-cloud-function-dependencies/pom.xml
@@ -6,11 +6,11 @@
spring-cloud-dependencies-parent
org.springframework.cloud
- 2.3.1.BUILD-SNAPSHOT
+ 2.3.0.RELEASE
spring-cloud-function-dependencies
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.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 e2a0fba14..338b8b161 100644
--- a/spring-cloud-function-deployer/pom.xml
+++ b/spring-cloud-function-deployer/pom.xml
@@ -10,7 +10,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-deployer/src/it/bootapp-multi/pom.xml b/spring-cloud-function-deployer/src/it/bootapp-multi/pom.xml
index 038bce99e..c60ebefe2 100644
--- a/spring-cloud-function-deployer/src/it/bootapp-multi/pom.xml
+++ b/spring-cloud-function-deployer/src/it/bootapp-multi/pom.xml
@@ -12,13 +12,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.17.RELEASE
diff --git a/spring-cloud-function-deployer/src/it/bootapp-with-javax/pom.xml b/spring-cloud-function-deployer/src/it/bootapp-with-javax/pom.xml
index 50f28aceb..bed11aa64 100644
--- a/spring-cloud-function-deployer/src/it/bootapp-with-javax/pom.xml
+++ b/spring-cloud-function-deployer/src/it/bootapp-with-javax/pom.xml
@@ -12,13 +12,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.17.RELEASE
diff --git a/spring-cloud-function-deployer/src/it/bootapp-with-scf/pom.xml b/spring-cloud-function-deployer/src/it/bootapp-with-scf/pom.xml
index 2618b3253..cb645dd6c 100644
--- a/spring-cloud-function-deployer/src/it/bootapp-with-scf/pom.xml
+++ b/spring-cloud-function-deployer/src/it/bootapp-with-scf/pom.xml
@@ -12,13 +12,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.17.RELEASE
diff --git a/spring-cloud-function-deployer/src/it/bootapp/pom.xml b/spring-cloud-function-deployer/src/it/bootapp/pom.xml
index 6448973b9..99cdd3c0f 100644
--- a/spring-cloud-function-deployer/src/it/bootapp/pom.xml
+++ b/spring-cloud-function-deployer/src/it/bootapp/pom.xml
@@ -12,13 +12,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.17.RELEASE
diff --git a/spring-cloud-function-deployer/src/it/bootjar-multi/pom.xml b/spring-cloud-function-deployer/src/it/bootjar-multi/pom.xml
index 9019c1e86..5004e2dcb 100644
--- a/spring-cloud-function-deployer/src/it/bootjar-multi/pom.xml
+++ b/spring-cloud-function-deployer/src/it/bootjar-multi/pom.xml
@@ -12,13 +12,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.17.RELEASE
diff --git a/spring-cloud-function-deployer/src/it/bootjar/pom.xml b/spring-cloud-function-deployer/src/it/bootjar/pom.xml
index 239d50919..ad47ebf2c 100644
--- a/spring-cloud-function-deployer/src/it/bootjar/pom.xml
+++ b/spring-cloud-function-deployer/src/it/bootjar/pom.xml
@@ -12,13 +12,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.17.RELEASE
diff --git a/spring-cloud-function-deployer/src/it/bootjarnostart/pom.xml b/spring-cloud-function-deployer/src/it/bootjarnostart/pom.xml
index db7643940..a055b7196 100644
--- a/spring-cloud-function-deployer/src/it/bootjarnostart/pom.xml
+++ b/spring-cloud-function-deployer/src/it/bootjarnostart/pom.xml
@@ -12,13 +12,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.17.RELEASE
diff --git a/spring-cloud-function-kotlin/pom.xml b/spring-cloud-function-kotlin/pom.xml
index 456e17d0e..f44e3421b 100644
--- a/spring-cloud-function-kotlin/pom.xml
+++ b/spring-cloud-function-kotlin/pom.xml
@@ -12,7 +12,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-aws-custom/pom.xml b/spring-cloud-function-samples/function-sample-aws-custom/pom.xml
index 14bf7f651..36e775a5d 100644
--- a/spring-cloud-function-samples/function-sample-aws-custom/pom.xml
+++ b/spring-cloud-function-samples/function-sample-aws-custom/pom.xml
@@ -5,7 +5,7 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
io.spring.sample
@@ -17,7 +17,7 @@
1.8
1.0.22.RELEASE
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-aws/pom.xml b/spring-cloud-function-samples/function-sample-aws/pom.xml
index 88667c6e2..ef776230a 100644
--- a/spring-cloud-function-samples/function-sample-aws/pom.xml
+++ b/spring-cloud-function-samples/function-sample-aws/pom.xml
@@ -15,7 +15,7 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
@@ -25,7 +25,7 @@
1.8
1.0.17.RELEASE
2.0.2
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-azure/pom.xml b/spring-cloud-function-samples/function-sample-azure/pom.xml
index 02cde32ce..d0576b010 100644
--- a/spring-cloud-function-samples/function-sample-azure/pom.xml
+++ b/spring-cloud-function-samples/function-sample-azure/pom.xml
@@ -14,7 +14,7 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-compiler/pom.xml b/spring-cloud-function-samples/function-sample-compiler/pom.xml
index 122c9b2c4..9947842d4 100644
--- a/spring-cloud-function-samples/function-sample-compiler/pom.xml
+++ b/spring-cloud-function-samples/function-sample-compiler/pom.xml
@@ -14,13 +14,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
3.1.2.RELEASE
1.0.17.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-gcp-background/pom.xml b/spring-cloud-function-samples/function-sample-gcp-background/pom.xml
index d7bedd53e..766e314f2 100644
--- a/spring-cloud-function-samples/function-sample-gcp-background/pom.xml
+++ b/spring-cloud-function-samples/function-sample-gcp-background/pom.xml
@@ -15,12 +15,12 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-gcp-http/pom.xml b/spring-cloud-function-samples/function-sample-gcp-http/pom.xml
index bdb25bb61..0ec49bce1 100644
--- a/spring-cloud-function-samples/function-sample-gcp-http/pom.xml
+++ b/spring-cloud-function-samples/function-sample-gcp-http/pom.xml
@@ -15,12 +15,12 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-pof/pom.xml b/spring-cloud-function-samples/function-sample-pof/pom.xml
index f54a80996..a0fa2f172 100644
--- a/spring-cloud-function-samples/function-sample-pof/pom.xml
+++ b/spring-cloud-function-samples/function-sample-pof/pom.xml
@@ -13,7 +13,7 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
@@ -22,7 +22,7 @@
UTF-8
1.8
3.1.2.RELEASE
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-pojo/pom.xml b/spring-cloud-function-samples/function-sample-pojo/pom.xml
index bf34b0cd4..eedd2f612 100644
--- a/spring-cloud-function-samples/function-sample-pojo/pom.xml
+++ b/spring-cloud-function-samples/function-sample-pojo/pom.xml
@@ -14,13 +14,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.21.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-spring-integration/pom.xml b/spring-cloud-function-samples/function-sample-spring-integration/pom.xml
index f46a89955..b2ea4f8d6 100644
--- a/spring-cloud-function-samples/function-sample-spring-integration/pom.xml
+++ b/spring-cloud-function-samples/function-sample-spring-integration/pom.xml
@@ -12,7 +12,7 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
@@ -20,7 +20,7 @@
UTF-8
UTF-8
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-supplier-exporter/pom.xml b/spring-cloud-function-samples/function-sample-supplier-exporter/pom.xml
index cdbd6d379..0b7f1d3b0 100644
--- a/spring-cloud-function-samples/function-sample-supplier-exporter/pom.xml
+++ b/spring-cloud-function-samples/function-sample-supplier-exporter/pom.xml
@@ -14,13 +14,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.17.RELEASE
diff --git a/spring-cloud-function-samples/function-sample-task/pom.xml b/spring-cloud-function-samples/function-sample-task/pom.xml
index aff8d9275..39ea67057 100644
--- a/spring-cloud-function-samples/function-sample-task/pom.xml
+++ b/spring-cloud-function-samples/function-sample-task/pom.xml
@@ -14,13 +14,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.10.RELEASE
3.1.2.RELEASE
diff --git a/spring-cloud-function-samples/function-sample/pom.xml b/spring-cloud-function-samples/function-sample/pom.xml
index 0fa7131da..7385e9726 100644
--- a/spring-cloud-function-samples/function-sample/pom.xml
+++ b/spring-cloud-function-samples/function-sample/pom.xml
@@ -14,13 +14,13 @@
org.springframework.boot
spring-boot-starter-parent
- 2.3.0.RELEASE
+ 2.3.1.RELEASE
1.8
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
1.0.17.RELEASE
diff --git a/spring-cloud-function-samples/pom.xml b/spring-cloud-function-samples/pom.xml
index 4686a03c2..f44bc1552 100644
--- a/spring-cloud-function-samples/pom.xml
+++ b/spring-cloud-function-samples/pom.xml
@@ -11,7 +11,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-task/pom.xml b/spring-cloud-function-task/pom.xml
index ac4349128..455d936c6 100644
--- a/spring-cloud-function-task/pom.xml
+++ b/spring-cloud-function-task/pom.xml
@@ -12,7 +12,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-function-web/pom.xml b/spring-cloud-function-web/pom.xml
index 9b824af72..4372f78b1 100644
--- a/spring-cloud-function-web/pom.xml
+++ b/spring-cloud-function-web/pom.xml
@@ -12,7 +12,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
diff --git a/spring-cloud-starter-function-web/pom.xml b/spring-cloud-starter-function-web/pom.xml
index ec7a2b54b..4efb12d88 100644
--- a/spring-cloud-starter-function-web/pom.xml
+++ b/spring-cloud-starter-function-web/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
..
spring-cloud-starter-function-web
diff --git a/spring-cloud-starter-function-webflux/pom.xml b/spring-cloud-starter-function-webflux/pom.xml
index ad2a236d5..42b664d3d 100644
--- a/spring-cloud-starter-function-webflux/pom.xml
+++ b/spring-cloud-starter-function-webflux/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-function-parent
- 3.0.8.BUILD-SNAPSHOT
+ 3.0.8.RELEASE
spring-cloud-starter-function-webflux
spring-cloud-starter-function-webflux