com.github.ngyewch.dart
所有者: Nick Ng
Gradle Dart 插件。
https://github.com/ngyewch/gradle-dart
源码: https://github.com/ngyewch/gradle-dart.git
版本 0.3.0(最新版)
0.3.0
创建日期:2016年11月9日。
Gradle Dart 插件。
使用 plugins DSL
plugins {
id("com.github.ngyewch.dart") version "0.3.0"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.ngyewch:gradle-dart:0.3.0")
}
}
apply(plugin = "com.github.ngyewch.dart")
使用 plugins DSL
plugins {
id "com.github.ngyewch.dart" version "0.3.0"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.ngyewch:gradle-dart:0.3.0"
}
}
apply plugin: "com.github.ngyewch.dart"