This JVM CLI app and companion Gradle plugin can sort the dependencies of a build.gradle[.kts] script.
./path/to/sort <path(s) that contain build.gradle[.kts] scripts>
# for example, use this to sort the full repo
./path/to/sort .
# for example, use this to sort a sub-tree
./path/to/sort features
# for example, use this to sort individual files
./path/to/sort my/app/build.gradle[.kts] my/app2/build.gradle[.kts]
# for example, use this to sort a subtree and a file
./path/to/sort features my/app2/build.gradle[.kts]
# Check sort status
./path/to/sort -m check <paths as above>
./path/to/sort --mode check <paths as above>// build.gradle[.kts]
plugins {
  id("com.squareup.sort-dependencies") version "<<version>>"
}./gradlew :my:app:sortDependencies
# Identical to the above
./gradlew :my:app:sortDependencies./gradlew :my:app:checkSortDependenciesThis task is automatically added as a dependency to the check task.
sortDependencies {
  // Defines a custom version of the SortDependencies CLI to use
  version.set(/* custom version */)
  // When true, a blank line will be inserted between dependencies of different configurations. Enabled by default.
  insertBlankLines = false
  // true by default, meaning that 'checkSortDependencies' is a dependency of 'check'
  check(true)
}./gradlew checkA fat jar of the CLI is available on Maven Central. Replace $version with the latest version.
https://repo1.maven.org/maven2/com/squareup/sort-gradle-dependencies-app/$version/sort-gradle-dependencies-app-$version-all.jar
./gradlew publishToMavenLocalThis will push all of this project's artifacts to ~/.m2/repository/.
./gradlew :app:shadowDistZipThis creates a zip file of the distribution at app/build/distributions/. This archive may be installed anywhere you
like.
./gradlew :app:installShadowDistThis will install the app to app/build/install/app-shadow/.
Copyright 2022 Square, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
   http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.