搜索Gradle插件

版本 1.0 (最新)

1.0

创建于 2019年11月30日。

Java CUP (构建有用的解析器) Gradle 插件

使用插件DSL

plugins {
  id("com.github.andrescv.jcup") version "1.0"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.andrescv:jcup-gradle-plugin:1.0")
  }
}

apply(plugin = "com.github.andrescv.jcup")

使用插件DSL

plugins {
  id "com.github.andrescv.jcup" version "1.0"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.andrescv:jcup-gradle-plugin:1.0"
  }
}

apply plugin: "com.github.andrescv.jcup"

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