Search Gradle plugins

Version 0.1.0

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects