搜索Gradle插件

版本 0.0.10 (最新)

0.0.10

创建于2020年10月7日。

将NPM默认提供的某些功能拖入Java领域。

使用插件DSL

plugins {
  id("com.geoffgranum.another-fine-build") version "0.0.10"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.geoffgranum:another-fine-build:0.0.10")
  }
}

apply(plugin = "com.geoffgranum.another-fine-build")

使用插件DSL

plugins {
  id "com.geoffgranum.another-fine-build" version "0.0.10"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.geoffgranum:another-fine-build:0.0.10"
  }
}

apply plugin: "com.geoffgranum.another-fine-build"

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