org.roboscratch.robot
Owner: Claas Thiele
Gradle Plugin for the Robot Framework
https://github.com/cthiele42/gradle-robot/wiki
Sources: https://github.com/cthiele42/gradle-robot
Version 0.1.3 (latest)
0.1.3
Created 13 September 2018.
Gradle Plugin for the Robot Framework
Using the plugins DSL:
plugins {
id("org.roboscratch.robot") version "0.1.3"
}
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.3")
}
}
apply(plugin = "org.roboscratch.robot")
Using the plugins DSL:
plugins {
id "org.roboscratch.robot" version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.roboscratch.gradle:gradle-robot:0.1.3"
}
}
apply plugin: "org.roboscratch.robot"