Skip to content

Commit 70582d1

Browse files
committed
Use spring-cloud-function-dependencies in time-spel-log
This replaces the use of `spring-cloud-dependencies` in time-spel-log with `spring-cloud-function-dependencies` in order to: - narrow dependencies to only what the sample needs - pick up spring-cloud/spring-cloud-function#1224 which will be released earlier than Spring Cloud `2024.0.1` in Spring Cloud Function `4.2.1` Signed-off-by: Chris Bono <[email protected]>
1 parent 3ebce88 commit 70582d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/time-spel-log/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ repositories {
1717
}
1818

1919
ext {
20-
springCloudVersion = '2024.0.1-SNAPSHOT'
20+
springCloudFunctionVersion = '4.2.1-SNAPSHOT'
2121
springFunctionsCatalogVersion = '5.1.0-SNAPSHOT'
2222
}
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom "org.springframework.cloud:spring-cloud-dependencies:$springCloudVersion"
26+
mavenBom "org.springframework.cloud:spring-cloud-function-dependencies:$springCloudFunctionVersion"
2727
mavenBom "org.springframework.cloud.fn:spring-functions-catalog-bom:$springFunctionsCatalogVersion"
2828
}
2929
}

0 commit comments

Comments
 (0)