com.github.gradle-lean
Owner: Cause Chung
A gradle plugin that minimizes dependency jars.
https://github.com/cuzfrog/gradle-lean
Sources: https://github.com/cuzfrog/gradle-lean
Version 0.1.2 (latest)
0.1.2
Created 30 July 2018.
A gradle plugin that minimizes dependency jars.
Using the plugins DSL:
plugins {
id("com.github.gradle-lean") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.gradle-lean:gradle-lean:0.1.2")
}
}
apply(plugin = "com.github.gradle-lean")
Using the plugins DSL:
plugins {
id "com.github.gradle-lean" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.gradle-lean:gradle-lean:0.1.2"
}
}
apply plugin: "com.github.gradle-lean"