Search Gradle plugins

Version 0.0.2 (latest)

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"

Learn how to apply plugins to subprojects