org.m2ci.msp.praat-wrapper-mac
所有者: Ingmar Steiner
Praat 提供商为 Gradle
https://github.com/m2ci-msp/gradle-praat-wrapper-plugin
源代码: https://github.com/m2ci-msp/gradle-praat-wrapper-plugin
使用 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"