Search Gradle plugins

Version 0.9.3

Created 30 July 2019.

Robot Framework plugin for Gradle

Using the plugins DSL:

plugins {
  id("org.theotherorg.poros.robot") version "0.9.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.theotherorg.poros:poros-robot:0.9.3")
  }
}

apply(plugin = "org.theotherorg.poros.robot")

Using the plugins DSL:

plugins {
  id "org.theotherorg.poros.robot" version "0.9.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.theotherorg.poros:poros-robot:0.9.3"
  }
}

apply plugin: "org.theotherorg.poros.robot"

Learn how to apply plugins to subprojects