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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("host.bytedance:ksp-deps-merge:0.0.2-beta")
  }
}

apply(plugin = "host.bytedance.ksp-deps-merge")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "host.bytedance:ksp-deps-merge:0.0.2-beta"
  }
}

apply plugin: "host.bytedance.ksp-deps-merge"

Learn how to apply plugins to subprojects