Search Gradle plugins

Version 1.1.2 (latest)

1.1.2

Created 16 August 2020.

auto register component

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.jsik.component-register") version "1.1.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.jsik.component-register:cc-register:1.1.2")
      }
    }
    
    apply(plugin = "com.jsik.component-register")
  • Applying plugins to all subprojects .