Search Gradle plugins

Version 0.16.8 (latest)

0.16.8

Created 14 March 2023.

Plugin for generating Kotlin implementation of MAVLink dialects.

Using the plugins DSL:

plugins {
  id("xyz.urbanmatrix.mavlink.generator") version "0.16.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("xyz.urbanmatrix.mavlink:generator:0.16.8")
  }
}

apply(plugin = "xyz.urbanmatrix.mavlink.generator")

Using the plugins DSL:

plugins {
  id "xyz.urbanmatrix.mavlink.generator" version "0.16.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "xyz.urbanmatrix.mavlink:generator:0.16.8"
  }
}

apply plugin: "xyz.urbanmatrix.mavlink.generator"

Learn how to apply plugins to subprojects