搜索 Gradle 插件

com.yahoo.parsec-templates

所有者: 吴 Wayne

gradle-templates 的 Parsec 扩展

版本 1.2-SNAPSHOT(最新版)

1.2-SNAPSHOT

创建于 2016年6月3日。

gradle-templates 的 Parsec 扩展

使用 plugins DSL

plugins {
  id("com.yahoo.parsec-templates") version "1.2-SNAPSHOT"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.yahoo.parsec.parsec-templates:parsec-templates:1.2-SNAPSHOT")
  }
}

apply(plugin = "com.yahoo.parsec-templates")

使用 plugins DSL

plugins {
  id "com.yahoo.parsec-templates" version "1.2-SNAPSHOT"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.yahoo.parsec.parsec-templates:parsec-templates:1.2-SNAPSHOT"
  }
}

apply plugin: "com.yahoo.parsec-templates"

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