xyz.urbanmatrix.mavlink.generator
所有者: Divyanshu Pundir
插件用于生成 MAVLink 语言的 Kotlin 实现。
https://github.com/urbanmatrix/mavlink-kotlin
来源: https://github.com/urbanmatrix/mavlink-kotlin
使用 plugins DSL
plugins {
id("xyz.urbanmatrix.mavlink.generator") version "0.16.8"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("xyz.urbanmatrix.mavlink:generator:0.16.8")
}
}
apply(plugin = "xyz.urbanmatrix.mavlink.generator")
使用 plugins DSL
plugins {
id "xyz.urbanmatrix.mavlink.generator" version "0.16.8"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "xyz.urbanmatrix.mavlink:generator:0.16.8"
}
}
apply plugin: "xyz.urbanmatrix.mavlink.generator"