Search Gradle plugins

Version 0.0.4

Created 09 January 2023.

A modern implementation of the component bus for Android

Using the plugins DSL:

plugins {
  id("love.nuoyan.android.component_bus_register") version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("love.nuoyan.android:component_bus_register:0.0.4")
  }
}

apply(plugin = "love.nuoyan.android.component_bus_register")

Using the plugins DSL:

plugins {
  id "love.nuoyan.android.component_bus_register" version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "love.nuoyan.android:component_bus_register:0.0.4"
  }
}

apply plugin: "love.nuoyan.android.component_bus_register"

Learn how to apply plugins to subprojects