com.siprell.plugins.bootstrap-framework
Owner:
Ken Siprell
Gradle plugin for integrating the Bootstrap Framework and Font Awesome
https://github.com/kensiprell/bootstrap-framework
Sources: https://github.com/kensiprell/bootstrap-framework.git
Version 1.0.3 (latest)
Created 21 August 2015.
Gradle plugin for integrating the Bootstrap Framework and Font Awesome
Add this plugin to your build using the plugins DSL:
plugins {
id("com.siprell.plugins.bootstrap-framework") version "1.0.3"
}
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("com.siprell.plugins.bootstrap-framework:com.siprell.plugins.bootstrap-framework.gradle.plugin:1.0.3") }
It can then be applied in the precompiled script plugin:plugins { id("com.siprell.plugins.bootstrap-framework") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.siprell.plugins.bootstrap-framework:com.siprell.plugins.bootstrap-framework.gradle.plugin:1.0.3") } } apply(plugin = "com.siprell.plugins.bootstrap-framework")
- Applying plugins to all subprojects .