Bumps the development-dependencies group with 2 updates in the / directory: [io.spring.dependency-management](https://github.com/spring-gradle-plugins/dependency-management-plugin) and com.github.spotbugs. Bumps the development-dependencies group with 1 update in the /samples/time-spel-log directory: [io.spring.dependency-management](https://github.com/spring-gradle-plugins/dependency-management-plugin). Bumps the development-dependencies group with 1 update in the /samples/zip-split-rabbit-binder directory: [io.spring.dependency-management](https://github.com/spring-gradle-plugins/dependency-management-plugin). Updates `io.spring.dependency-management` from 1.1.6 to 1.1.7 - [Release notes](https://github.com/spring-gradle-plugins/dependency-management-plugin/releases) - [Commits](https://github.com/spring-gradle-plugins/dependency-management-plugin/compare/v1.1.6...v1.1.7) Updates `com.github.spotbugs` from 6.0.26 to 6.0.27 Updates `io.spring.dependency-management` from 1.1.6 to 1.1.7 - [Release notes](https://github.com/spring-gradle-plugins/dependency-management-plugin/releases) - [Commits](https://github.com/spring-gradle-plugins/dependency-management-plugin/compare/v1.1.6...v1.1.7) Updates `io.spring.dependency-management` from 1.1.6 to 1.1.7 - [Release notes](https://github.com/spring-gradle-plugins/dependency-management-plugin/releases) - [Commits](https://github.com/spring-gradle-plugins/dependency-management-plugin/compare/v1.1.6...v1.1.7) --- updated-dependencies: - dependency-name: io.spring.dependency-management dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: com.github.spotbugs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: io.spring.dependency-management dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: io.spring.dependency-management dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
50 lines
1.3 KiB
Groovy
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.2-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()
|
|
}
|