Search Gradle plugins

Version 0.0.2

Created 20 December 2019.

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.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.dotinc:vertx-codegen-plugin:0.0.2")
  }
}

apply(plugin = "io.dotinc.vertx-codegen-plugin")

Using the plugins DSL:

plugins {
  id "io.dotinc.vertx-codegen-plugin" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.dotinc:vertx-codegen-plugin:0.0.2"
  }
}

apply plugin: "io.dotinc.vertx-codegen-plugin"

Learn how to apply plugins to subprojects