搜索 Gradle 插件

版本 0.0.3(最新版)

0.0.3

创建于 2018年11月30日。

无压力开发资源管理工具

使用 插件 DSL

plugins {
  id("hu.ponte.respresso") version "0.0.3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.hu.ponte:respresso-gradle-plugin:0.0.3")
  }
}

apply(plugin = "hu.ponte.respresso")

使用 插件 DSL

plugins {
  id "hu.ponte.respresso" version "0.0.3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.hu.ponte:respresso-gradle-plugin:0.0.3"
  }
}

apply plugin: "hu.ponte.respresso"

学习如何向子项目应用插件