Search Gradle plugins

ch.sourcemotion.gradle.vertx.hermes

Generates Kotlin source code for dtos, Vert.x message codecs and communication (consumer, sender) based on JSON (schemas). Take a look in the README

https://github.com/wem/vertx-hermes-gradle-plugin

Sources: https://github.com/wem/vertx-hermes-gradle-plugin.git

Version 0.0.1 (latest)

Created 26 August 2021.

Generates Kotlin source code for dtos, Vert.x message codecs and communication (consumer, sender) based on JSON (schemas). Take a look in the README

Using the plugins DSL:

plugins {
  id("ch.sourcemotion.gradle.vertx.hermes") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.sourcemotion.gradle:vertx-hermes-gradle-plugin:0.0.1")
  }
}

apply(plugin = "ch.sourcemotion.gradle.vertx.hermes")

Using the plugins DSL:

plugins {
  id "ch.sourcemotion.gradle.vertx.hermes" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.sourcemotion.gradle:vertx-hermes-gradle-plugin:0.0.1"
  }
}

apply plugin: "ch.sourcemotion.gradle.vertx.hermes"

Learn how to apply plugins to subprojects