io.dotinc.vertx-codegen-plugin
Owner: Vlad Bulimac
A Gradle plugin to facilitate the codegen usage for Vert.x Java projects
https://github.com/bulivlad/vertx-codegen-plugin
Sources: https://github.com/bulivlad/vertx-codegen-plugin
Version 0.1.1 (latest)
0.1.1
Created 18 June 2020.
A Gradle plugin to facilitate the codegen usage for Vert.x Java projects
Using the plugins DSL:
plugins {
id("io.dotinc.vertx-codegen-plugin") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.dotinc:vertx-codegen-plugin:0.1.1")
}
}
apply(plugin = "io.dotinc.vertx-codegen-plugin")
Using the plugins DSL:
plugins {
id "io.dotinc.vertx-codegen-plugin" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.dotinc:vertx-codegen-plugin:0.1.1"
}
}
apply plugin: "io.dotinc.vertx-codegen-plugin"