搜索 Gradle 插件

版本 0.0.65(最新版本)

0.0.65

创建于 2024 年 7 月 30 日。

一个简化使用 Webots 进行仿真开发 WPILib 项目的插件。

使用 插件 DSL

plugins {
  id("org.carlmontrobotics.deepbluesim") version "0.0.65"
}

使用 传统的插件应用

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

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

使用 插件 DSL

plugins {
  id "org.carlmontrobotics.deepbluesim" version "0.0.65"
}

使用 传统的插件应用

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

apply plugin: "org.carlmontrobotics.deepbluesim"

了解如何将插件应用于子项目