You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This plugin configures various aspects of dependency management. Where values are configurable, adefault is specified.Certain values are configurable viadependencySettings extension inside each projectbuild.gradle.kts, but most areconfigured only once in adependencySettings extension in settings.gradle.kts.
Adds a version catalog (default name:commonLibs, defaultartifact:org.hypertrace.bom:hypertrace-version-catalog:<catalogVersion>. catalogVersion must beset explicitly)
Renames the defaultlibs catalog (fromlibs.versions.toml) tolocalLibs to disambiguate
For each java project:
Adds dependency repositories of mavenLocal, mavenCentral, confluent and hypertrace
IfautoApplyBom is specified (default: true), adds a BOM dependency to theapiconfiguration (falling backtoimplementation ifapi is unavailable). The BOM reference to use (bomArtifactName -defaulthypertrace.bom) and version can also be configured.bomVersionName (defaultstohypertrace.bom)describes the name of the version property in the catalog andbomVersion (defaults tolatest -+) describes the value to assign.
If integration tests are found, it will also addintegrationTestCompileClasspath andintegrationTestRuntimeClasspath
IfuseDependencyLocking is specified (default: true), adds a projecttaskresolveAndLockAllwhich can be used inconjunction with the--write-locks flag to update all project lockfiles.