Going back to snapshots

This commit is contained in:
buildmaster
2021-12-14 08:47:52 +00:00
parent 2ece708178
commit ac239ddf0e
47 changed files with 87 additions and 124 deletions

View File

@@ -129,9 +129,23 @@ the `.mvn` configuration, so if you find you have to do it to make a
build succeed, please raise a ticket to get the settings added to build succeed, please raise a ticket to get the settings added to
source control. source control.
The projects that require middleware (i.e. Redis) for testing generally For hints on how to build the project look in `.travis.yml` if there
require that a local instance of [Docker](https://www.docker.com/get-started) is installed and running. is one. There should be a "script" and maybe "install" command. Also
look at the "services" section to see if any services need to be
running locally (e.g. mongo or rabbit). Ignore the git-related bits
that you might find in "before_install" since they're related to setting git
credentials and you already have those.
The projects that require middleware generally include a
`docker-compose.yml`, so consider using
https://docs.docker.com/compose/[Docker Compose] to run the middeware servers
in Docker containers. See the README in the
https://github.com/spring-cloud-samples/scripts[scripts demo
repository] for specific instructions about the common cases of mongo,
rabbit and redis.
NOTE: If all else fails, build with the command from `.travis.yml` (usually
`./mvnw install`).
=== Documentation === Documentation
@@ -364,54 +378,3 @@ Go to `File` -> `Settings` -> `Other settings` -> `Checkstyle`. There click on t
- `checkstyle.additional.suppressions.file` - this variable corresponds to suppressions in your local project. E.g. you're working on `spring-cloud-contract`. Then point to the `project-root/src/checkstyle/checkstyle-suppressions.xml` folder. Example for `spring-cloud-contract` would be: `/home/username/spring-cloud-contract/src/checkstyle/checkstyle-suppressions.xml`. - `checkstyle.additional.suppressions.file` - this variable corresponds to suppressions in your local project. E.g. you're working on `spring-cloud-contract`. Then point to the `project-root/src/checkstyle/checkstyle-suppressions.xml` folder. Example for `spring-cloud-contract` would be: `/home/username/spring-cloud-contract/src/checkstyle/checkstyle-suppressions.xml`.
IMPORTANT: Remember to set the `Scan Scope` to `All sources` since we apply checkstyle rules for production and test sources. IMPORTANT: Remember to set the `Scan Scope` to `All sources` since we apply checkstyle rules for production and test sources.
=== Duplicate Finder
Spring Cloud Build brings along the `basepom:duplicate-finder-maven-plugin`, that enables flagging duplicate and conflicting classes and resources on the java classpath.
==== Duplicate Finder configuration
Duplicate finder is *enabled by default* and will run in the `verify` phase of your Maven build, but it will only take effect in your project if you add the `duplicate-finder-maven-plugin` to the `build` section of the projecst's `pom.xml`.
.pom.xml
[source,xml]
----
<build>
<plugins>
<plugin>
<groupId>org.basepom.maven</groupId>
<artifactId>duplicate-finder-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
----
For other properties, we have set defaults as listed in the https://github.com/basepom/duplicate-finder-maven-plugin/wiki[plugin documentation].
You can easily override them but setting the value of the selected property prefixed with `duplicate-finder-maven-plugin`. For example, set `duplicate-finder-maven-plugin.skip` to `true` in order to skip duplicates check in your build.
If you need to add `ignoredClassPatterns` or `ignoredResourcePatterns` to your setup, make sure to add them in the plugin configuration section of your project:
[source,xml]
----
<build>
<plugins>
<plugin>
<groupId>org.basepom.maven</groupId>
<artifactId>duplicate-finder-maven-plugin</artifactId>
<configuration>
<ignoredClassPatterns>
<ignoredClassPattern>org.joda.time.base.BaseDateTime</ignoredClassPattern>
<ignoredClassPattern>.*module-info</ignoredClassPattern>
</ignoredClassPatterns>
<ignoredResourcePatterns>
<ignoredResourcePattern>changelog.txt</ignoredResourcePattern>
</ignoredResourcePatterns>
</configuration>
</plugin>
</plugins>
</build>
----

View File

@@ -7,7 +7,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Spring Cloud Function Docs</name> <name>Spring Cloud Function Docs</name>

View File

@@ -6,7 +6,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<parent> <parent>

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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<name>spring-cloud-function-adapter-parent</name> <name>spring-cloud-function-adapter-parent</name>

View File

@@ -13,7 +13,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>

View File

@@ -13,7 +13,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>

View File

@@ -11,7 +11,7 @@
<parent> <parent>
<artifactId>spring-cloud-function-adapter-parent</artifactId> <artifactId>spring-cloud-function-adapter-parent</artifactId>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<version>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>

View File

@@ -13,7 +13,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -12,7 +12,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -12,7 +12,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -12,7 +12,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -6,11 +6,11 @@
<parent> <parent>
<artifactId>spring-cloud-dependencies-parent</artifactId> <artifactId>spring-cloud-dependencies-parent</artifactId>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<version>3.0.5</version> <version>3.0.5-SNAPSHOT</version>
<relativePath/> <relativePath/>
</parent> </parent>
<artifactId>spring-cloud-function-dependencies</artifactId> <artifactId>spring-cloud-function-dependencies</artifactId>
<version>3.1.6</version> <version>3.1.6-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

@@ -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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>

View File

@@ -12,13 +12,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -12,13 +12,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath /> <relativePath />
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.17.RELEASE</wrapper.version> <wrapper.version>1.0.17.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -12,13 +12,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -12,13 +12,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -12,13 +12,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -12,13 +12,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -12,13 +12,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath /> <relativePath />
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -12,7 +12,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -12,7 +12,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>

View File

@@ -15,7 +15,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
@@ -25,7 +25,7 @@
<java.version>1.8</java.version> <java.version>1.8</java.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
<aws-lambda-events.version>3.9.0</aws-lambda-events.version> <aws-lambda-events.version>3.9.0</aws-lambda-events.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath /> <!-- lookup parent from repository --> <relativePath /> <!-- lookup parent from repository -->
</parent> </parent>
<groupId>io.spring.sample</groupId> <groupId>io.spring.sample</groupId>
@@ -17,7 +17,7 @@
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath /> <!-- lookup parent from repository --> <relativePath /> <!-- lookup parent from repository -->
</parent> </parent>
<groupId>io.spring.sample</groupId> <groupId>io.spring.sample</groupId>
@@ -17,7 +17,7 @@
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -15,7 +15,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
@@ -25,7 +25,7 @@
<java.version>1.8</java.version> <java.version>1.8</java.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.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>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -15,7 +15,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
@@ -25,7 +25,7 @@
<java.version>1.8</java.version> <java.version>1.8</java.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.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>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -14,7 +14,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>

View File

@@ -12,13 +12,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -11,13 +11,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -11,13 +11,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -14,13 +14,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-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.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -15,7 +15,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.6.0-SNAPSHOT</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
@@ -25,7 +25,7 @@
<java.version>1.8</java.version> <java.version>1.8</java.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.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>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.2.0-SNAPSHOT</spring-cloud-function.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -15,7 +15,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>

View File

@@ -15,12 +15,12 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
<properties> <properties>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.2.1-SNAPSHOT</spring-cloud-function.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -11,7 +11,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>

View File

@@ -13,7 +13,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
@@ -22,7 +22,7 @@
<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>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -14,13 +14,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

View File

@@ -12,7 +12,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath /> <relativePath />
</parent> </parent>
@@ -20,7 +20,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<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>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -14,13 +14,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@@ -14,13 +14,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
<reactor.version>3.1.2.RELEASE</reactor.version> <reactor.version>3.1.2.RELEASE</reactor.version>
</properties> </properties>

View File

@@ -14,13 +14,13 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.13</version> <version>2.5.5</version>
<relativePath/> <relativePath/>
</parent> </parent>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<spring-cloud-function.version>3.1.6</spring-cloud-function.version> <spring-cloud-function.version>3.1.6-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.27.RELEASE</wrapper.version> <wrapper.version>1.0.27.RELEASE</wrapper.version>
</properties> </properties>

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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<modules> <modules>

View File

@@ -12,7 +12,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -12,7 +12,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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<artifactId>spring-cloud-starter-function-web</artifactId> <artifactId>spring-cloud-starter-function-web</artifactId>

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>3.1.6</version> <version>3.1.6-SNAPSHOT</version>
</parent> </parent>
<artifactId>spring-cloud-starter-function-webflux</artifactId> <artifactId>spring-cloud-starter-function-webflux</artifactId>
<name>spring-cloud-starter-function-webflux</name> <name>spring-cloud-starter-function-webflux</name>