搜索 Gradle 插件

版本 1.0.0 (最新版)

1.0.0

创建于 2023 年 8 月 15 日。

一个简化本地 Webots 安装使用 Java 代码开发的插件。

使用 插件 DSL

plugins {
  id("org.carlmontrobotics.webots") version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.carlmontrobotics:webots-plugin:1.0.0")
  }
}

apply(plugin = "org.carlmontrobotics.webots")

使用 插件 DSL

plugins {
  id "org.carlmontrobotics.webots" version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.carlmontrobotics:webots-plugin:1.0.0"
  }
}

apply plugin: "org.carlmontrobotics.webots"

学习如何将插件应用于子项目