搜索 Gradle 插件

版本 0.0.1 (最新版)

0.0.1

创建于 2020 年 3 月 3 日。

基于注解的生命周期处理 Conductor 控制器

使用 plugins DSL

plugins {
  id("com.funnydevs.conductor-lifecycle") version "0.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("Hoop:conductor-lifecycle:0.0.1")
  }
}

apply(plugin = "com.funnydevs.conductor-lifecycle")

使用 plugins DSL

plugins {
  id "com.funnydevs.conductor-lifecycle" version "0.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "Hoop:conductor-lifecycle:0.0.1"
  }
}

apply plugin: "com.funnydevs.conductor-lifecycle"

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