com.github.ngyewch.dart
Owner: Nick Ng
Gradle Dart plugin.
https://github.com/ngyewch/gradle-dart
Sources: https://github.com/ngyewch/gradle-dart.git
Version 0.3.0 (latest)
0.3.0
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"