com.github.amaksoft.elasticlibs
Owner: Andrey Makeev
Gradle plugin to easily switch between local projects and remote artifacts of your libs.
https://github.com/amaksoft/gradle-elastic-libs-plugin
Sources: https://github.com/amaksoft/gradle-elastic-libs-plugin.git
Version 0.0.8 (latest)
0.0.8
Created 17 October 2016.
Gradle plugin to easily switch between local projects and remote artifacts of your libs.
Using the plugins DSL:
plugins {
id("com.github.amaksoft.elasticlibs") version "0.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.amaksoft:gradle-elastic-libs-plugin:0.0.8")
}
}
apply(plugin = "com.github.amaksoft.elasticlibs")
Using the plugins DSL:
plugins {
id "com.github.amaksoft.elasticlibs" version "0.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.amaksoft:gradle-elastic-libs-plugin:0.0.8"
}
}
apply plugin: "com.github.amaksoft.elasticlibs"