Search Gradle plugins

Version 2.0.4 (latest)

2.0.4

Created 06 August 2020.

Router Plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.dovar.router.plugin") version "2.0.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.RouterPlugin:plugin:2.0.4")
      }
    }
    
    apply(plugin = "com.dovar.router.plugin")
  • Applying plugins to all subprojects .