Search Gradle plugins

Version 2.3 (latest)

2.3

Created 30 October 2019.

Plugin for BusUtils used as EventBus.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.blankj.bus") version "2.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.blankj:bus-gradle-plugin:2.3")
      }
    }
    
    apply(plugin = "com.blankj.bus")
  • Applying plugins to all subprojects .