com.github.richardwrq.krouter
Owner: RichardWu
Gradle KRouter Plugin
https://github.com/richardwrq/KRouter
Sources: https://github.com/richardwrq/KRouter.git
Version 0.1.0 (latest)
0.1.0
Created 02 March 2018.
Gradle KRouter Plugin
Using the plugins DSL:
plugins {
id("com.github.richardwrq.krouter") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.richardwrq:krouter-gradle-plugin:0.1.0")
}
}
apply(plugin = "com.github.richardwrq.krouter")
Using the plugins DSL:
plugins {
id "com.github.richardwrq.krouter" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.richardwrq:krouter-gradle-plugin:0.1.0"
}
}
apply plugin: "com.github.richardwrq.krouter"