From 0842498c0e5277a1e552e5fb3ca4472cce1a1ca2 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 26 Dec 2024 14:05:55 -0500 Subject: [PATCH] Use Spring Cloud `2024.0.1-SNAPSHOT` for `time-spel-log` The PR for Spring Cloud Function https://github.com/spring-cloud/spring-cloud-function/pull/1224 brings the fix for functions declared as `FactoryBean` --- samples/time-spel-log/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/samples/time-spel-log/build.gradle b/samples/time-spel-log/build.gradle index cf5cd2da..eb6c1824 100644 --- a/samples/time-spel-log/build.gradle +++ b/samples/time-spel-log/build.gradle @@ -12,13 +12,12 @@ java { } repositories { - mavenLocal() mavenCentral() maven { url 'https://repo.spring.io/snapshot' } } ext { - springCloudVersion = '2024.0.0' + springCloudVersion = '2024.0.1-SNAPSHOT' springFunctionsCatalogVersion = '5.1.0-SNAPSHOT' }