搜索Gradle插件

版本 0.4.0(最新版)

0.4.0

创建于2020年2月24日。

基于Gradle的fjage开发插件。

使用插件域DSL

plugins {
  id("com.github.ngyewch.gradle-fjage-plugin") version "0.4.0"
}

使用旧版插件应用

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

apply(plugin = "com.github.ngyewch.gradle-fjage-plugin")

使用插件域DSL

plugins {
  id "com.github.ngyewch.gradle-fjage-plugin" version "0.4.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.ngyewch.gradle-fjage-plugin:gradle-fjage-plugin:0.4.0"
  }
}

apply plugin: "com.github.ngyewch.gradle-fjage-plugin"

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