com.jamesward.atomgradleplugin
Owner: James Ward
Download and run the Atom editor
Sources: https://github.com/jamesward/atom-gradle-plugin
Version 0.0.2 (latest)
0.0.2
Created 20 January 2017.
Download and run the Atom editor
Using the plugins DSL:
plugins {
id("com.jamesward.atomgradleplugin") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.jamesward:atom-gradle-plugin:0.0.2")
}
}
apply(plugin = "com.jamesward.atomgradleplugin")
Using the plugins DSL:
plugins {
id "com.jamesward.atomgradleplugin" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.jamesward:atom-gradle-plugin:0.0.2"
}
}
apply plugin: "com.jamesward.atomgradleplugin"