搜索Gradle插件

io.github.zero88.qwe.gradle.oss

所有者: zero88

此插件为项目添加了一些构建/maven分发的实用程序

https://github.com/play-iot/gradle-plugin

源: https://github.com/zero88/qwe.git

版本 1.0.0 (最新版)

1.0.0

创建于2021年2月20日。

此插件为项目添加了一些构建/maven分发的实用程序

使用插件DSL

plugins {
  id("io.github.zero88.qwe.gradle.oss") version "1.0.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.zero88.qwe:qwe-gradle-plugin:1.0.0")
  }
}

apply(plugin = "io.github.zero88.qwe.gradle.oss")

使用插件DSL

plugins {
  id "io.github.zero88.qwe.gradle.oss" version "1.0.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.zero88.qwe:qwe-gradle-plugin:1.0.0"
  }
}

apply plugin: "io.github.zero88.qwe.gradle.oss"

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