de.qualersoft.robotframework
Owner: mathze
Plugin to integrate robot framework into gradle.
https://github.com/qualersoft/robotframework-gradle-plugin
Sources: https://github.com/qualersoft/robotframework-gradle-plugin
Version 0.0.1-SNAPSHOT
0.0.1-SNAPSHOT
Created 04 April 2021.
Plugin to integrate robot framework into gradle.
Using the plugins DSL:
plugins {
id("de.qualersoft.robotframework") version "0.0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.qualersoft:robotframework-gradle-plugin:0.0.1-SNAPSHOT")
}
}
apply(plugin = "de.qualersoft.robotframework")
Using the plugins DSL:
plugins {
id "de.qualersoft.robotframework" version "0.0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.qualersoft:robotframework-gradle-plugin:0.0.1-SNAPSHOT"
}
}
apply plugin: "de.qualersoft.robotframework"