搜索 Gradle 插件

版本 0.9.4 (最新版)

0.9.4

创建于 2019 年 7 月 31 日。

Gradle 的 Robot Framework 插件

使用 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"

了解如何应用插件到子项目中