Search Gradle plugins

host.bytedance.ksp-deps-merge

Owner: zsqw123

Plugin for integrates all of child dependencies into single project

https://github.com/zsqw123/ksp-ex

Sources: https://github.com/zsqw123/ksp-ex

Version 0.0.2-beta (latest)

Created 14 March 2024.

Plugin for integrates all of child dependencies into single project

Add this plugin to your build using the plugins DSL:

plugins {
  id("host.bytedance.ksp-deps-merge") version "0.0.2-beta"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("host.bytedance.ksp-deps-merge:host.bytedance.ksp-deps-merge.gradle.plugin:0.0.2-beta")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("host.bytedance.ksp-deps-merge")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("host.bytedance.ksp-deps-merge:host.bytedance.ksp-deps-merge.gradle.plugin:0.0.2-beta")
      }
    }
    
    apply(plugin = "host.bytedance.ksp-deps-merge")
  • Applying plugins to all subprojects .