xyz.urbanmatrix.mavlink.generator
                  Owner:
                  
                    
                    Divyanshu Pundir
                  
                
Plugin for generating Kotlin implementation of MAVLink dialects.
https://github.com/urbanmatrix/mavlink-kotlin
Sources: https://github.com/urbanmatrix/mavlink-kotlin
Version 0.16.6-alpha
Created 14 March 2023.
                Plugin for generating Kotlin implementation of MAVLink dialects.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("xyz.urbanmatrix.mavlink.generator") version "0.16.6-alpha"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("xyz.urbanmatrix.mavlink.generator:xyz.urbanmatrix.mavlink.generator.gradle.plugin:0.16.6-alpha") }It can then be applied in the precompiled script plugin:plugins { id("xyz.urbanmatrix.mavlink.generator") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("xyz.urbanmatrix.mavlink.generator:xyz.urbanmatrix.mavlink.generator.gradle.plugin:0.16.6-alpha") } } apply(plugin = "xyz.urbanmatrix.mavlink.generator")
- Applying plugins to all subprojects .