Search Gradle plugins

Version 0.3.0 (latest)

Created 12 September 2023.

A modern implementation of the component bus for Android!

Using the plugins DSL:

plugins {
  id("cn.moltres.component_bus.register") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("cn.moltres.component_bus:component_bus_register:0.3.0")
  }
}

apply(plugin = "cn.moltres.component_bus.register")

Using the plugins DSL:

plugins {
  id "cn.moltres.component_bus.register" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "cn.moltres.component_bus:component_bus_register:0.3.0"
  }
}

apply plugin: "cn.moltres.component_bus.register"

Learn how to apply plugins to subprojects