io.github.oojohn6oo.drouterlite.assembler
Owner: Liu
gradle plugin to assemble routers and services in each module
https://github.com/oOJohn6Oo/DRouterLite
Sources: https://github.com/oOJohn6Oo/DRouterLite
Version 1.0.0-alpha05
1.0.0-alpha05
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-alpha05"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.oojohn6oo:plugin-assembler:1.0.0-alpha05")
}
}
apply(plugin = "io.github.oojohn6oo.drouterlite.assembler")
Using the plugins DSL:
plugins {
id "io.github.oojohn6oo.drouterlite.assembler" version "1.0.0-alpha05"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.oojohn6oo:plugin-assembler:1.0.0-alpha05"
}
}
apply plugin: "io.github.oojohn6oo.drouterlite.assembler"