Search Gradle plugins

Version 0.1.0

Created 13 June 2016.

Gradle Plugin for the Robot Framework

Using the plugins DSL:

plugins {
  id("org.roboscratch.robot") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.roboscratch.gradle:gradle-robot:0.1.0")
  }
}

apply(plugin = "org.roboscratch.robot")

Using the plugins DSL:

plugins {
  id "org.roboscratch.robot" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.roboscratch.gradle:gradle-robot:0.1.0"
  }
}

apply plugin: "org.roboscratch.robot"

Learn how to apply plugins to subprojects