net.wooga.rust.lib
所有者: Manne Endres
用于构建 rust 库组件的简单 gradle 插件
https://wooga.github.io/atlas-rust/
资源: https://github.com/wooga/atlas-rust
使用 plugins DSL
plugins {
id("net.wooga.rust.lib") version "1.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:rust:1.0.0")
}
}
apply(plugin = "net.wooga.rust.lib")
使用 plugins DSL
plugins {
id "net.wooga.rust.lib" version "1.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:rust:1.0.0"
}
}
apply plugin: "net.wooga.rust.lib"