Search Gradle plugins

Version 0.5 (latest)

Created 29 March 2019.

Export maven dependencies from a gradle project to the file system

Using the plugins DSL:

plugins {
  id("com.lazan.dependency-export") version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.lazan:gradle-dependency-export:0.5")
  }
}

apply(plugin = "com.lazan.dependency-export")

Using the plugins DSL:

plugins {
  id "com.lazan.dependency-export" version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.lazan:gradle-dependency-export:0.5"
  }
}

apply plugin: "com.lazan.dependency-export"

Learn how to apply plugins to subprojects