Search Gradle plugins

Version 0.0.2 (latest)

0.0.2

Created 20 January 2017.

Download and run the Atom editor

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.jamesward.atomgradleplugin") version "0.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.jamesward:atom-gradle-plugin:0.0.2")
      }
    }
    
    apply(plugin = "com.jamesward.atomgradleplugin")
  • Applying plugins to all subprojects .