com.lazan.dependency-export
Owner:
Lance Java
Export maven dependencies from a gradle project to the file system
https://github.com/uklance/gradle-dependency-export
Sources: https://github.com/uklance/gradle-dependency-export.git
Version 0.2
Created 23 February 2019.
Export maven dependencies from a gradle project to the file system
Using the plugins DSL:
plugins {
id("com.lazan.dependency-export") version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.lazan:gradle-dependency-export:0.2")
}
}
apply(plugin = "com.lazan.dependency-export")
Using the plugins DSL:
plugins {
id "com.lazan.dependency-export" version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.lazan:gradle-dependency-export:0.2"
}
}
apply plugin: "com.lazan.dependency-export"