搜索Gradle插件

版本 0.0.2 (最新版)

0.0.2

创建于2015年10月14日。

用于加载和使用yaml属性,增强Gradle内置功能的Gradle插件。

使用插件DSL

plugins {
  id("pl.softmate.gradle-properties-yaml-plugin") version "0.0.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.pl.softmate:gradle-properties-yaml-plugin:0.0.2")
  }
}

apply(plugin = "pl.softmate.gradle-properties-yaml-plugin")

使用插件DSL

plugins {
  id "pl.softmate.gradle-properties-yaml-plugin" version "0.0.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.pl.softmate:gradle-properties-yaml-plugin:0.0.2"
  }
}

apply plugin: "pl.softmate.gradle-properties-yaml-plugin"

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