搜索 Gradle 插件

版本 0.4(最新版)

0.4

创建于 2017年3月13日。

Praat 提供商为 Gradle

使用 plugins DSL

plugins {
  id("org.m2ci.msp.praat-wrapper-mac") version "0.4"
}

使用 旧式插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.m2ci.msp:praat-wrapper-mac:0.4")
  }
}

apply(plugin = "org.m2ci.msp.praat-wrapper-mac")

使用 plugins DSL

plugins {
  id "org.m2ci.msp.praat-wrapper-mac" version "0.4"
}

使用 旧式插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.m2ci.msp:praat-wrapper-mac:0.4"
  }
}

apply plugin: "org.m2ci.msp.praat-wrapper-mac"

学习如何将插件应用到子项目