Search Gradle plugins

io.github.zcys12173.plugin_router_4_2

Configure the automatic registration Gradle plugin for the KRouter component library.

https://github.com/zcys12173/KRouter/tree/main/plugin-router

Sources: https://github.com/zcys12173/KRouter.git

Version 1.0.0-pre (latest)

1.0.0-pre

Created 16 May 2023.

Configure the automatic registration Gradle plugin for the KRouter component library.

Using the plugins DSL:

plugins {
  id("io.github.zcys12173.plugin_router_4_2") version "1.0.0-pre"
}

Using legacy plugin application:

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

apply(plugin = "io.github.zcys12173.plugin_router_4_2")

Using the plugins DSL:

plugins {
  id "io.github.zcys12173.plugin_router_4_2" version "1.0.0-pre"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.zcys12173.plugins:plugin-router:1.0.0-pre"
  }
}

apply plugin: "io.github.zcys12173.plugin_router_4_2"

Learn how to apply plugins to subprojects