Bumps the development-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [org.testcontainers:testcontainers-bom](https://github.com/testcontainers/testcontainers-java) | `1.21.0` | `1.21.1` | | [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) | `42.7.5` | `42.7.6` | | [org.hibernate.orm:hibernate-core](https://github.com/hibernate/hibernate-orm) | `6.6.15.Final` | `6.6.17.Final` | | com.github.spotbugs | `6.1.12` | `6.1.13` | | [io.spring.develocity.conventions](https://github.com/spring-io/develocity-conventions) | `0.0.22` | `0.0.23` | Updates `org.testcontainers:testcontainers-bom` from 1.21.0 to 1.21.1 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.21.0...1.21.1) Updates `org.postgresql:postgresql` from 42.7.5 to 42.7.6 - [Release notes](https://github.com/pgjdbc/pgjdbc/releases) - [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md) - [Commits](https://github.com/pgjdbc/pgjdbc/compare/REL42.7.5...REL42.7.6) Updates `org.hibernate.orm:hibernate-core` from 6.6.15.Final to 6.6.17.Final - [Release notes](https://github.com/hibernate/hibernate-orm/releases) - [Changelog](https://github.com/hibernate/hibernate-orm/blob/6.6.17/changelog.txt) - [Commits](https://github.com/hibernate/hibernate-orm/compare/6.6.15...6.6.17) Updates `com.github.spotbugs` from 6.1.12 to 6.1.13 Updates `io.spring.develocity.conventions` from 0.0.22 to 0.0.23 - [Release notes](https://github.com/spring-io/develocity-conventions/releases) - [Commits](https://github.com/spring-io/develocity-conventions/compare/v0.0.22...v0.0.23) --- updated-dependencies: - dependency-name: org.testcontainers:testcontainers-bom dependency-version: 1.21.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: org.postgresql:postgresql dependency-version: 42.7.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: org.hibernate.orm:hibernate-core dependency-version: 6.6.17.Final dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: com.github.spotbugs dependency-version: 6.1.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: io.spring.develocity.conventions dependency-version: 0.0.23 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>
20 lines
368 B
Groovy
20 lines
368 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'io.spring.develocity.conventions' version '0.0.23'
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
|
|
}
|
|
|
|
rootProject.name = 'spring-integration'
|
|
|
|
rootDir.eachDir { dir ->
|
|
if (dir.name.startsWith('spring-integration-')) {
|
|
include ":${dir.name}"
|
|
}
|
|
}
|