搜索Gradle插件

版本 1.1.0 (最新)

1.1.0

创建日期 2022年3月5日。

监控打包项目的应用程序生命周期

使用插件DSL

plugins {
  id("io.github.jamesfchen.lifecycle-plugin") version "1.1.0"
}

使用旧插件应用程序

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

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

使用插件DSL

plugins {
  id "io.github.jamesfchen.lifecycle-plugin" version "1.1.0"
}

使用旧插件应用程序

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

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

了解如何将插件应用到子项目