ro.isdc.wro4j.gradle
Owner:
dalma gwon
wro4j for gradle 2.1+
https://github.com/IlyaAI/wro4j-gradle-plugin
Sources: https://github.com/IlyaAI/wro4j-gradle-plugin.git
Version 1.8.0.Beta5 (latest)
Created 14 June 2020.
wro4j for gradle 2.1+
Add this plugin to your build using the plugins DSL:
plugins {
id("ro.isdc.wro4j.gradle") version "1.8.0.Beta5"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("ro.isdc.wro4j.gradle:ro.isdc.wro4j.gradle.gradle.plugin:1.8.0.Beta5") }
It can then be applied in the precompiled script plugin:plugins { id("ro.isdc.wro4j.gradle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ro.isdc.wro4j.gradle:ro.isdc.wro4j.gradle.gradle.plugin:1.8.0.Beta5") } } apply(plugin = "ro.isdc.wro4j.gradle")
- Applying plugins to all subprojects .