Search Gradle plugins

Version 0.2

Created 17 February 2017.

Praat provider for Gradle

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects