Skip to content

Latest commit

 

History

History
333 lines (293 loc) · 21.1 KB

File metadata and controls

333 lines (293 loc) · 21.1 KB

Problem Solving

Setup

git config core.hooksPath .githooks
chmod +x .githooks/pre-commit

Dependency Updates

Generate a review file listing all available updates:

./gradlew versionCatalogUpdate --interactive

This writes gradle/libs.versions.updates.toml. Open it and comment out (or delete) any entries you are not ready to update. To pin an entry permanently across future runs, add a # @pin comment on the line above it in gradle/libs.versions.toml.

Apply the reviewed updates:

./gradlew versionCatalogApplyUpdates

Verify the build:

./gradlew build

Update the Gradle wrapper (independent of the catalog):

./gradlew wrapper --gradle-version=latest

Company

Misc