搜索Gradle插件

版本 0.0.2(最新版)

0.0.2

创建于 2024年1月13日。

一个帮助您使用Groovy编写Gradle插件的插件

使用插件DSL

plugins {
  id("io.github.pacificengine.build.plugin.groovy") version "0.0.2"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.pacificengine.build.plugin:groovy:0.0.2")
  }
}

apply(plugin = "io.github.pacificengine.build.plugin.groovy")

使用插件DSL

plugins {
  id "io.github.pacificengine.build.plugin.groovy" version "0.0.2"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.pacificengine.build.plugin:groovy:0.0.2"
  }
}

apply plugin: "io.github.pacificengine.build.plugin.groovy"

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