Files
spring-functions-catalog/settings.gradle
dependabot[bot] 207267ab1f Bump the development-dependencies group across 1 directory with 3 updates (#166)
Bumps the development-dependencies group with 3 updates in the / directory: [io.spring.javaformat:spring-javaformat-checkstyle](https://github.com/spring-io/spring-javaformat), [io.spring.javaformat](https://github.com/spring-io/spring-javaformat) and [io.spring.develocity.conventions](https://github.com/spring-io/develocity-conventions).


Updates `io.spring.javaformat:spring-javaformat-checkstyle` from 0.0.45 to 0.0.46
- [Release notes](https://github.com/spring-io/spring-javaformat/releases)
- [Commits](https://github.com/spring-io/spring-javaformat/compare/v0.0.45...v0.0.46)

Updates `io.spring.javaformat` from 0.0.45 to 0.0.46
- [Release notes](https://github.com/spring-io/spring-javaformat/releases)
- [Commits](https://github.com/spring-io/spring-javaformat/compare/v0.0.45...v0.0.46)

Updates `io.spring.javaformat` from 0.0.45 to 0.0.46
- [Release notes](https://github.com/spring-io/spring-javaformat/releases)
- [Commits](https://github.com/spring-io/spring-javaformat/compare/v0.0.45...v0.0.46)

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: io.spring.javaformat:spring-javaformat-checkstyle
  dependency-version: 0.0.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: io.spring.javaformat
  dependency-version: 0.0.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: io.spring.javaformat
  dependency-version: 0.0.46
  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>
2025-06-08 09:34:18 -04:00

27 lines
671 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
plugins {
id 'io.spring.develocity.conventions' version '0.0.23' apply false
}
startParameter.noBuildScan = startParameter.taskNames.contains('format')
apply plugin: 'io.spring.develocity.conventions'
rootProject.name = 'spring-functions-catalog'
include 'spring-functions-catalog-bom'
['common', 'consumer', 'function', 'supplier'].each { group ->
def groupDir = file(group)
groupDir.eachDir { subProject ->
include "${subProject.name}"
project(":${subProject.name}").projectDir = new File(groupDir.absolutePath, subProject.name)
}
}