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)
1.0.3
Created 21 August 2015.
Gradle plugin for integrating the Bootstrap Framework and Font Awesome
Using the plugins DSL:
plugins {
id("com.siprell.plugins.bootstrap-framework") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.siprell.plugins:bootstrap-framework:1.0.3")
}
}
apply(plugin = "com.siprell.plugins.bootstrap-framework")
Using the plugins DSL:
plugins {
id "com.siprell.plugins.bootstrap-framework" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.siprell.plugins:bootstrap-framework:1.0.3"
}
}
apply plugin: "com.siprell.plugins.bootstrap-framework"