搜索 Gradle 插件

版本 0.2 (最新版)

0.2

创建于 2018 年 4 月 8 日。

由于 JCenter 将永久重定向到 Maven Central,此插件版本将无法解析,因为它使用的依赖项仅在 JCenter 中可用。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 使用 Gradle 构建 Rust 库和应用程序的插件

使用 plugins DSL

plugins {
  id("org.ysb33r.rust.exe") version "0.2"
}

使用 旧插件应用程序

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

apply(plugin = "org.ysb33r.rust.exe")

使用 plugins DSL

plugins {
  id "org.ysb33r.rust.exe" version "0.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.ysb33r.gradle:rust-gradle-plugin:0.2"
  }
}

apply plugin: "org.ysb33r.rust.exe"

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