org.theotherorg.poros.robot
所有者: Guillaume Pelletier
Gradle 的 Robot Framework 插件
https://poros.gitlab.io/poros-site
使用 plugins DSL
plugins {
id("org.theotherorg.poros.robot") version "0.9.4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.theotherorg.poros:poros-robot:0.9.4")
}
}
apply(plugin = "org.theotherorg.poros.robot")
使用 plugins DSL
plugins {
id "org.theotherorg.poros.robot" version "0.9.4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "org.theotherorg.poros:poros-robot:0.9.4"
}
}
apply plugin: "org.theotherorg.poros.robot"