aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/settings.gradle.kts
blob: fae32dd6728051f94e4839643e8d2759f8b6ba65 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
/**
 * IDEs don't support this very well for buildSrc, so we use the regular dependency format
 * until that changes.
dependencyResolutionManagement {
  versionCatalogs {
    create("libs") {
      from(files("../gradle/libs.versions.toml"))
    }
  }
}
*/