搜索 Gradle 插件

ch.sourcemotion.gradle.vertx.hermes

所有者: Michel Werren

基于 JSON(模式)生成 dto、Vert.x 消息编解码器和通信(消费者、发送者)的 Kotlin 源代码。查看 README

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

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

版本 0.0.1(最新版)

0.0.1

创建于 2021 年 8 月 26 日。

基于 JSON(模式)生成 dto、Vert.x 消息编解码器和通信(消费者、发送者)的 Kotlin 源代码。查看 README

使用 插件 DSL

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

使用 旧版插件应用

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

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

使用 插件 DSL

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

使用 旧版插件应用

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

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

了解如何将插件应用于子项目