Search Gradle plugins

Version 1.0.0-alpha06 (latest)

Created 17 April 2024.

Gradle plugin to assemble routers and services in each module

Using the plugins DSL:

plugins {
  id("io.github.oojohn6oo.drouterlite.assembler") version "1.0.0-alpha06"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.oojohn6oo:plugin-assembler:1.0.0-alpha06")
  }
}

apply(plugin = "io.github.oojohn6oo.drouterlite.assembler")

Using the plugins DSL:

plugins {
  id "io.github.oojohn6oo.drouterlite.assembler" version "1.0.0-alpha06"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.oojohn6oo:plugin-assembler:1.0.0-alpha06"
  }
}

apply plugin: "io.github.oojohn6oo.drouterlite.assembler"

Learn how to apply plugins to subprojects