搜索Gradle插件

版本 0.0.3(最新版)

0.0.3

创建于 2020年11月6日。

由于JCenter将成为永久重定向到Maven Central,该插件将不再解析,因为它仅使用JCenter中出现的依赖项。请参阅以下博客文章以获取详细信息:https://blog.gradle.org.cn/portal-jcenter-impact 最佳Android项目结构方式

使用 插件DSL

plugins {
  id("com.stepango.forma") version "0.0.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.stepango.forma:plugin:0.0.3")
  }
}

apply(plugin = "com.stepango.forma")

使用 插件DSL

plugins {
  id "com.stepango.forma" version "0.0.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.stepango.forma:plugin:0.0.3"
  }
}

apply plugin: "com.stepango.forma"

学习如何将插件应用于子项目