Revert to snapshots

This commit is contained in:
Dave Syer
2019-05-21 17:55:37 +01:00
parent 2bc52de4bb
commit 738b29c5db
43 changed files with 58 additions and 58 deletions

View File

@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Spring Cloud Function Docs</name> <name>Spring Cloud Function Docs</name>

View File

@@ -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: 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.2.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 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.3.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
---- ----
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: 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:

View File

@@ -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.2.RELEASE-azure.jar", "scriptFile" : "../function-sample-azure-1.0.3.BUILD-SNAPSHOT-azure.jar",
"entryPoint" : "example.FooHandler.execute", "entryPoint" : "example.FooHandler.execute",
"bindings" : [ { "bindings" : [ {
"type" : "httpTrigger", "type" : "httpTrigger",

View File

@@ -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): 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.2.RELEASE.jar runner.jar cp spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/target/spring-cloud-function-adapter-openwhisk-1.0.3.BUILD-SNAPSHOT.jar runner.jar
``` ```
Generate a m2 repo from the `--thin.dryrun` of the runner JAR with the above properties file: Generate a m2 repo from the `--thin.dryrun` of the runner JAR with the above properties file:

View File

@@ -155,7 +155,7 @@ function copy_docs_for_current_version() {
file=${f#docs/target/generated-docs/*} file=${f#docs/target/generated-docs/*}
if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then
# Not ignored... # Not ignored...
# We want users to access 1.0.2.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html # We want users to access 1.0.3.BUILD-SNAPSHOT/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html
if [[ "${file}" == "${MAIN_ADOC_VALUE}.html" ]] ; then if [[ "${file}" == "${MAIN_ADOC_VALUE}.html" ]] ; then
# We don't want to copy the spring-cloud-sleuth.html # We don't want to copy the spring-cloud-sleuth.html
# we want it to be converted to index.html # we want it to be converted to index.html
@@ -197,7 +197,7 @@ function copy_docs_for_branch() {
local destination=$2 local destination=$2
if ! git ls-files -i -o --exclude-standard --directory | grep -q ^${file}$; then if ! git ls-files -i -o --exclude-standard --directory | grep -q ^${file}$; then
# Not ignored... # Not ignored...
# We want users to access 1.0.2.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html # We want users to access 1.0.3.BUILD-SNAPSHOT/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html
if [[ ("${file}" == "${MAIN_ADOC_VALUE}.html") || ("${file}" == "${REPO_NAME}.html") ]] ; then if [[ ("${file}" == "${MAIN_ADOC_VALUE}.html") || ("${file}" == "${REPO_NAME}.html") ]] ; then
# We don't want to copy the spring-cloud-sleuth.html # We don't want to copy the spring-cloud-sleuth.html
# we want it to be converted to index.html # we want it to be converted to index.html

View File

@@ -4,7 +4,7 @@
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<name>Spring Cloud Function Parent</name> <name>Spring Cloud Function Parent</name>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<parent> <parent>

View File

@@ -1,3 +1,3 @@
#!/bin/bash #!/bin/bash
java -jar ../spring-cloud-function-compiler/target/spring-cloud-function-compiler-1.0.2.RELEASE.jar java -jar ../spring-cloud-function-compiler/target/spring-cloud-function-compiler-1.0.3.BUILD-SNAPSHOT.jar

View File

@@ -45,7 +45,7 @@ while getopts ":i:s:f:c:o:p:d:" opt; do
esac esac
done done
java -jar ../spring-cloud-function-samples/function-sample-compiler/target/function-sample-compiler-1.0.2.RELEASE.jar\ java -jar ../spring-cloud-function-samples/function-sample-compiler/target/function-sample-compiler-1.0.3.BUILD-SNAPSHOT.jar\
--management.security.enabled=false\ --management.security.enabled=false\
--server.port=$PORT\ --server.port=$PORT\
--spring.cloud.function.stream.endpoint=$FUNC\ --spring.cloud.function.stream.endpoint=$FUNC\

View File

@@ -14,5 +14,5 @@ while getopts ":s:f:c:" opt; do
esac esac
done done
java -noverify -XX:TieredStopAtLevel=1 -Xss256K -Xms16M -Xmx256M -XX:MaxMetaspaceSize=128M -jar ../spring-cloud-function-task/target/spring-cloud-function-task-1.0.2.RELEASE.jar\ java -noverify -XX:TieredStopAtLevel=1 -Xss256K -Xms16M -Xmx256M -XX:MaxMetaspaceSize=128M -jar ../spring-cloud-function-task/target/spring-cloud-function-task-1.0.3.BUILD-SNAPSHOT.jar\
--lambda.supplier=$SUPP --lambda.function=$FUNC --lambda.consumer=$CONS --lambda.supplier=$SUPP --lambda.function=$FUNC --lambda.consumer=$CONS

View File

@@ -20,7 +20,7 @@ while getopts ":s:f:c:p:" opt; do
esac esac
done done
java -jar ../spring-cloud-function-samples/function-sample-compiler/target/function-sample-compiler-1.0.2.RELEASE.jar\ java -jar ../spring-cloud-function-samples/function-sample-compiler/target/function-sample-compiler-1.0.3.BUILD-SNAPSHOT.jar\
--spring.cloud.function.import.$FUNC.type=$TYPE\ --spring.cloud.function.import.$FUNC.type=$TYPE\
--spring.cloud.function.import.$FUNC.location=file:///tmp/function-registry/$TYPE's'/$FUNC.fun\ --spring.cloud.function.import.$FUNC.location=file:///tmp/function-registry/$TYPE's'/$FUNC.fun\
--management.security.enabled=false\ --management.security.enabled=false\

View File

@@ -9,7 +9,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<name>spring-cloud-function-adapter-parent</name> <name>spring-cloud-function-adapter-parent</name>

View File

@@ -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: 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.2.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 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.3.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
---- ----
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: 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:

View File

@@ -12,7 +12,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-adapter-parent</artifactId> <artifactId>spring-cloud-function-adapter-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>

View File

@@ -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.2.RELEASE-azure.jar", "scriptFile" : "../function-sample-azure-1.0.3.BUILD-SNAPSHOT-azure.jar",
"entryPoint" : "example.FooHandler.execute", "entryPoint" : "example.FooHandler.execute",
"bindings" : [ { "bindings" : [ {
"type" : "httpTrigger", "type" : "httpTrigger",

View File

@@ -12,7 +12,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-adapter-parent</artifactId> <artifactId>spring-cloud-function-adapter-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>

View File

@@ -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): 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.2.RELEASE.jar runner.jar cp spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/target/spring-cloud-function-adapter-openwhisk-1.0.3.BUILD-SNAPSHOT.jar runner.jar
``` ```
Generate a m2 repo from the `--thin.dryrun` of the runner JAR with the above properties file: Generate a m2 repo from the `--thin.dryrun` of the runner JAR with the above properties file:

View File

@@ -12,7 +12,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-adapter-parent</artifactId> <artifactId>spring-cloud-function-adapter-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -10,7 +10,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -11,7 +11,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -10,7 +10,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -9,7 +9,7 @@
<relativePath/> <relativePath/>
</parent> </parent>
<artifactId>spring-cloud-function-dependencies</artifactId> <artifactId>spring-cloud-function-dependencies</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Spring Cloud Function Dependencies</name> <name>Spring Cloud Function Dependencies</name>
<description>Spring Cloud Function Dependencies</description> <description>Spring Cloud Function Dependencies</description>

View File

@@ -11,7 +11,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>

View File

@@ -17,7 +17,7 @@
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>1.0.2.RELEASE</spring-cloud-function.version> <spring-cloud-function.version>1.0.3.BUILD-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.10.RELEASE</wrapper.version> <wrapper.version>1.0.10.RELEASE</wrapper.version>
<reactor.version>3.2.0.M1</reactor.version> <reactor.version>3.2.0.M1</reactor.version>
</properties> </properties>

View File

@@ -26,7 +26,7 @@ apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.experimental.thin-launcher' apply plugin: 'org.springframework.boot.experimental.thin-launcher'
group = 'io.spring.sample' group = 'io.spring.sample'
version = '1.0.2.RELEASE' version = '1.0.3.BUILD-SNAPSHOT'
sourceCompatibility = 1.8 sourceCompatibility = 1.8
targetCompatibility = 1.8 targetCompatibility = 1.8
@@ -38,7 +38,7 @@ repositories {
} }
ext { ext {
springCloudFunctionVersion = "1.0.2.RELEASE" springCloudFunctionVersion = "1.0.3.BUILD-SNAPSHOT"
awsLambdaEventsVersion = "1.2.1" awsLambdaEventsVersion = "1.2.1"
awsLambdaCoreVersion = "1.1.0" awsLambdaCoreVersion = "1.1.0"
} }

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId> <groupId>io.spring.sample</groupId>
<artifactId>function-sample-aws</artifactId> <artifactId>function-sample-aws</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>function-sample-aws</name> <name>function-sample-aws</name>
@@ -25,8 +25,8 @@
<wrapper.version>1.0.10.RELEASE</wrapper.version> <wrapper.version>1.0.10.RELEASE</wrapper.version>
<aws-lambda-events.version>2.0.2</aws-lambda-events.version> <aws-lambda-events.version>2.0.2</aws-lambda-events.version>
<reactor.version>3.1.2.RELEASE</reactor.version> <reactor.version>3.1.2.RELEASE</reactor.version>
<spring-cloud-function.version>1.0.2.RELEASE</spring-cloud-function.version> <spring-cloud-function.version>1.0.3.BUILD-SNAPSHOT</spring-cloud-function.version>
<spring-cloud-stream-servlet.version>1.0.2.RELEASE</spring-cloud-stream-servlet.version> <spring-cloud-stream-servlet.version>1.0.3.BUILD-SNAPSHOT</spring-cloud-stream-servlet.version>
<start-class>example.Config</start-class> <start-class>example.Config</start-class>
</properties> </properties>

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId> <groupId>io.spring.sample</groupId>
<artifactId>function-sample-azure</artifactId> <artifactId>function-sample-azure</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>function-sample-azure</name> <name>function-sample-azure</name>
@@ -52,7 +52,7 @@
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-dependencies</artifactId> <artifactId>spring-cloud-function-dependencies</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>

View File

@@ -1,5 +1,5 @@
{ {
"scriptFile": "../function-sample-azure-1.0.2.RELEASE-azure.jar", "scriptFile": "../function-sample-azure-1.0.3.BUILD-SNAPSHOT-azure.jar",
"entryPoint": "example.FooHandler.execute", "entryPoint": "example.FooHandler.execute",
"bindings": [ "bindings": [
{ {

View File

@@ -22,7 +22,7 @@ apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.experimental.thin-launcher' apply plugin: 'org.springframework.boot.experimental.thin-launcher'
group = 'io.spring.sample' group = 'io.spring.sample'
version = '1.0.2.RELEASE' version = '1.0.3.BUILD-SNAPSHOT'
sourceCompatibility = 1.8 sourceCompatibility = 1.8
targetCompatibility = 1.8 targetCompatibility = 1.8
@@ -34,7 +34,7 @@ repositories {
} }
ext { ext {
springCloudFunctionVersion = "1.0.2.RELEASE" springCloudFunctionVersion = "1.0.3.BUILD-SNAPSHOT"
} }
ext['reactor.version'] = "3.1.7.RELEASE" ext['reactor.version'] = "3.1.7.RELEASE"

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId> <groupId>io.spring.sample</groupId>
<artifactId>function-sample-compiler</artifactId> <artifactId>function-sample-compiler</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>spring-cloud-function-sample-compiler</name> <name>spring-cloud-function-sample-compiler</name>
<description>Spring Cloud Function Lambda Compiling Support</description> <description>Spring Cloud Function Lambda Compiling Support</description>
@@ -19,7 +19,7 @@
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>1.0.2.RELEASE</spring-cloud-function.version> <spring-cloud-function.version>1.0.3.BUILD-SNAPSHOT</spring-cloud-function.version>
<spring-cloud-stream.version>Elmhurst.RELEASE</spring-cloud-stream.version> <spring-cloud-stream.version>Elmhurst.RELEASE</spring-cloud-stream.version>
<reactor.version>3.1.2.RELEASE</reactor.version> <reactor.version>3.1.2.RELEASE</reactor.version>
<wrapper.version>1.0.10.RELEASE</wrapper.version> <wrapper.version>1.0.10.RELEASE</wrapper.version>

View File

@@ -22,7 +22,7 @@ apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.experimental.thin-launcher' apply plugin: 'org.springframework.boot.experimental.thin-launcher'
group = 'io.spring.sample' group = 'io.spring.sample'
version = '1.0.2.RELEASE' version = '1.0.3.BUILD-SNAPSHOT'
sourceCompatibility = 1.8 sourceCompatibility = 1.8
targetCompatibility = 1.8 targetCompatibility = 1.8
@@ -34,7 +34,7 @@ repositories {
} }
ext { ext {
springCloudFunctionVersion = "1.0.2.RELEASE" springCloudFunctionVersion = "1.0.3.BUILD-SNAPSHOT"
} }
ext['reactor.version'] = "3.1.7.RELEASE" ext['reactor.version'] = "3.1.7.RELEASE"

View File

@@ -4,7 +4,7 @@
<groupId>io.spring.sample</groupId> <groupId>io.spring.sample</groupId>
<artifactId>function-sample-pof</artifactId> <artifactId>function-sample-pof</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>function-sample-pof</name> <name>function-sample-pof</name>
<description>Spring Cloud Function Web Support</description> <description>Spring Cloud Function Web Support</description>
@@ -21,8 +21,8 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<reactor.version>3.1.2.RELEASE</reactor.version> <reactor.version>3.1.2.RELEASE</reactor.version>
<spring-cloud-function.version>1.0.2.RELEASE</spring-cloud-function.version> <spring-cloud-function.version>1.0.3.BUILD-SNAPSHOT</spring-cloud-function.version>
<spring-cloud-stream-servlet.version>1.0.2.RELEASE</spring-cloud-stream-servlet.version> <spring-cloud-stream-servlet.version>1.0.3.BUILD-SNAPSHOT</spring-cloud-stream-servlet.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -22,7 +22,7 @@ apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.experimental.thin-launcher' apply plugin: 'org.springframework.boot.experimental.thin-launcher'
group = 'io.spring.sample' group = 'io.spring.sample'
version = '1.0.2.RELEASE' version = '1.0.3.BUILD-SNAPSHOT'
sourceCompatibility = 1.8 sourceCompatibility = 1.8
targetCompatibility = 1.8 targetCompatibility = 1.8
@@ -34,7 +34,7 @@ repositories {
} }
ext { ext {
springCloudFunctionVersion = "1.0.2.RELEASE" springCloudFunctionVersion = "1.0.3.BUILD-SNAPSHOT"
} }
ext['reactor.version'] = "3.1.7.RELEASE" ext['reactor.version'] = "3.1.7.RELEASE"

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId> <groupId>io.spring.sample</groupId>
<artifactId>function-sample-pojo</artifactId> <artifactId>function-sample-pojo</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>function-sample-pojo</name> <name>function-sample-pojo</name>
<description>Spring Cloud Function Web Support</description> <description>Spring Cloud Function Web Support</description>
@@ -19,7 +19,7 @@
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>1.0.2.RELEASE</spring-cloud-function.version> <spring-cloud-function.version>1.0.3.BUILD-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.11.RELEASE</wrapper.version> <wrapper.version>1.0.11.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -22,7 +22,7 @@ apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.experimental.thin-launcher' apply plugin: 'org.springframework.boot.experimental.thin-launcher'
group = 'io.spring.sample' group = 'io.spring.sample'
version = '1.0.2.RELEASE' version = '1.0.3.BUILD-SNAPSHOT'
sourceCompatibility = 1.8 sourceCompatibility = 1.8
targetCompatibility = 1.8 targetCompatibility = 1.8
@@ -34,7 +34,7 @@ repositories {
} }
ext { ext {
springCloudFunctionVersion = "1.0.2.RELEASE" springCloudFunctionVersion = "1.0.3.BUILD-SNAPSHOT"
} }
ext['reactor.version'] = "3.1.7.RELEASE" ext['reactor.version'] = "3.1.7.RELEASE"

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId> <groupId>io.spring.sample</groupId>
<artifactId>function-sample-task</artifactId> <artifactId>function-sample-task</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>function-sample-task</name> <name>function-sample-task</name>
<description>Spring Cloud Function Task Support</description> <description>Spring Cloud Function Task Support</description>
@@ -19,7 +19,7 @@
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>1.0.2.RELEASE</spring-cloud-function.version> <spring-cloud-function.version>1.0.3.BUILD-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.10.RELEASE</wrapper.version> <wrapper.version>1.0.10.RELEASE</wrapper.version>
<reactor.version>3.1.2.RELEASE</reactor.version> <reactor.version>3.1.2.RELEASE</reactor.version>
</properties> </properties>

View File

@@ -34,7 +34,7 @@ repositories {
} }
ext { ext {
springCloudFunctionVersion = "1.0.2.RELEASE" springCloudFunctionVersion = "1.0.3.BUILD-SNAPSHOT"
} }
ext['reactor.version'] = "3.1.7.RELEASE" ext['reactor.version'] = "3.1.7.RELEASE"

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId> <groupId>io.spring.sample</groupId>
<artifactId>function-sample</artifactId> <artifactId>function-sample</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>function-sample</name> <name>function-sample</name>
<description>Spring Cloud Function Web Support</description> <description>Spring Cloud Function Web Support</description>
@@ -19,7 +19,7 @@
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>1.0.2.RELEASE</spring-cloud-function.version> <spring-cloud-function.version>1.0.3.BUILD-SNAPSHOT</spring-cloud-function.version>
<reactor.version>3.1.2.RELEASE</reactor.version> <reactor.version>3.1.2.RELEASE</reactor.version>
<wrapper.version>1.0.10.RELEASE</wrapper.version> <wrapper.version>1.0.10.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -9,7 +9,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<modules> <modules>

View File

@@ -11,7 +11,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -10,7 +10,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -11,7 +11,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId> <artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<artifactId>spring-cloud-starter-function-web</artifactId> <artifactId>spring-cloud-starter-function-web</artifactId>

View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>spring-cloud-stream-binder-servlet</artifactId> <artifactId>spring-cloud-stream-binder-servlet</artifactId>
<version>1.0.2.RELEASE</version> <version>1.0.3.BUILD-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>spring-cloud-stream-binder-servlet</name> <name>spring-cloud-stream-binder-servlet</name>
<description>Servlet binder implementation</description> <description>Servlet binder implementation</description>