Search Gradle plugins

Version 1.0.0 (latest)

Created 08 July 2021.

monitor app lifecycle for bundle project

Using the plugins DSL:

plugins {
  id("com.github.jamesfchen.lifecycle-plugin") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.jamesfchen:lifecycle-plugin:1.0.0")
  }
}

apply(plugin = "com.github.jamesfchen.lifecycle-plugin")

Using the plugins DSL:

plugins {
  id "com.github.jamesfchen.lifecycle-plugin" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.jamesfchen:lifecycle-plugin:1.0.0"
  }
}

apply plugin: "com.github.jamesfchen.lifecycle-plugin"

Learn how to apply plugins to subprojects