Search Gradle plugins

Version 0.3.0 (latest)

Created 09 November 2016.

Gradle Dart plugin.

Using the plugins DSL:

plugins {
  id("com.github.ngyewch.dart") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.ngyewch:gradle-dart:0.3.0")
  }
}

apply(plugin = "com.github.ngyewch.dart")

Using the plugins DSL:

plugins {
  id "com.github.ngyewch.dart" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.ngyewch:gradle-dart:0.3.0"
  }
}

apply plugin: "com.github.ngyewch.dart"

Learn how to apply plugins to subprojects