com.divpundir.mavlink.generator
Owner: Divyanshu Pundir
Plugin for generating Kotlin implementation of MAVLink dialects.
https://github.com/divyanshupundir/mavlink-kotlin
Sources: https://github.com/divyanshupundir/mavlink-kotlin
Version 0.20.0-alpha.2
0.20.0-alpha.2
Created 24 June 2023.
Plugin for generating Kotlin implementation of MAVLink dialects.
Using the plugins DSL:
plugins {
id("com.divpundir.mavlink.generator") version "0.20.0-alpha.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.divpundir.mavlink:generator:0.20.0-alpha.2")
}
}
apply(plugin = "com.divpundir.mavlink.generator")
Using the plugins DSL:
plugins {
id "com.divpundir.mavlink.generator" version "0.20.0-alpha.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.divpundir.mavlink:generator:0.20.0-alpha.2"
}
}
apply plugin: "com.divpundir.mavlink.generator"