Files
spring-functions-catalog/samples/zip-split-rabbit-binder/build.gradle
dependabot[bot] 94f23233d5 Bump org.springframework.cloud.fn:spring-functions-catalog-bom (#127)
Bumps [org.springframework.cloud.fn:spring-functions-catalog-bom](https://github.com/spring-cloud/spring-functions-catalog) from 5.0.2-SNAPSHOT to 5.0.3-SNAPSHOT.
- [Release notes](https://github.com/spring-cloud/spring-functions-catalog/releases)
- [Commits](https://github.com/spring-cloud/spring-functions-catalog/commits)

---
updated-dependencies:
- dependency-name: org.springframework.cloud.fn:spring-functions-catalog-bom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-23 09:20:02 -05:00

50 lines
1.3 KiB
Groovy

plugins {
id 'java'
id 'org.springframework.boot' version '3.2.12'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/snapshot' }
}
ext {
springCloudVersion = '2023.0.4'
springFunctionsCatalogVersion = '5.0.3-SNAPSHOT'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:$springCloudVersion"
mavenBom "org.springframework.cloud.fn:spring-functions-catalog-bom:$springFunctionsCatalogVersion"
}
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-stream-binder-rabbit'
implementation 'org.springframework.integration:spring-integration-zip'
implementation 'org.springframework.cloud.fn:spring-file-supplier'
implementation 'org.springframework.cloud.fn:spring-splitter-function'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-testcontainers'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation 'org.testcontainers:rabbitmq'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
tasks.named('test') {
useJUnitPlatform()
}