Search Gradle plugins

Version 0.1.0-SNAPSHOT

Created 02 March 2017.

Utility plugin to manage speech data following FLAC+YAML convention

Using the plugins DSL:

plugins {
  id("org.m2ci.msp.flaml") version "0.1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.m2ci.msp:gradle-flaml-plugin:0.1.0-SNAPSHOT")
  }
}

apply(plugin = "org.m2ci.msp.flaml")

Using the plugins DSL:

plugins {
  id "org.m2ci.msp.flaml" version "0.1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.m2ci.msp:gradle-flaml-plugin:0.1.0-SNAPSHOT"
  }
}

apply plugin: "org.m2ci.msp.flaml"

Learn how to apply plugins to subprojects