pl.greenpath.gradle.bowertoprod
Owner: Michał Borek
Bower to production gradle plugin copies only production files to desired directory. It skips all the samples, README files and so on. Production files are recognized by 'main' section in bower.json or by custom definition
https://github.com/michalborek/bower-to-prod-gradle-plugin
Sources: https://github.com/michalborek/bower-to-prod-gradle-plugin
Version 0.1.3
0.1.3
Created 01 March 2016.
Bower to production gradle plugin copies only production files to desired directory.
It skips all the samples, README files and so on. Production files are recognized by 'main' section
in bower.json or by custom definition
Add this plugin to your build using the plugins DSL:
plugins {
id("pl.greenpath.gradle.bowertoprod") version "0.1.3"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.pl.greenpath.gradle:bower-to-prod-gradle-plugin:0.1.3") } } apply(plugin = "pl.greenpath.gradle.bowertoprod")
- Applying plugins to all subprojects .