Search Gradle plugins

Version 1.0.5 (latest)

Created 01 January 2024.

A code generator for the message/service data classes for krosbridge.

Using the plugins DSL:

plugins {
  id("io.github.thoebert.krosbridge-codegen") version "1.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.thoebert:krosbridge-codegen:1.0.5")
  }
}

apply(plugin = "io.github.thoebert.krosbridge-codegen")

Using the plugins DSL:

plugins {
  id "io.github.thoebert.krosbridge-codegen" version "1.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.thoebert:krosbridge-codegen:1.0.5"
  }
}

apply plugin: "io.github.thoebert.krosbridge-codegen"

Learn how to apply plugins to subprojects