org.theotherorg.poros.robot
Owner: Guillaume Pelletier
Robot Framework plugin for Gradle
https://poros.gitlab.io/poros-site
Sources: https://gitlab.com/poros
Using the plugins DSL:
plugins {
id("org.theotherorg.poros.robot") version "0.9.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.theotherorg.poros:poros-robot:0.9.4")
}
}
apply(plugin = "org.theotherorg.poros.robot")
Using the plugins DSL:
plugins {
id "org.theotherorg.poros.robot" version "0.9.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.theotherorg.poros:poros-robot:0.9.4"
}
}
apply plugin: "org.theotherorg.poros.robot"