com.stehno.gradle.webpreview
Owner: Christopher J. Stehno
Gradle plugin to preview local web content.
http://cjstehno.github.io/gradle-webpreview-plugin/
Sources: https://github.com/cjstehno/gradle-webpreview-plugin
Version 0.3.0 (latest)
0.3.0
Created 28 April 2017.
Gradle plugin to preview local web content.
Using the plugins DSL:
plugins {
id("com.stehno.gradle.webpreview") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.stehno.gradle:webpreview:0.3.0")
}
}
apply(plugin = "com.stehno.gradle.webpreview")
Using the plugins DSL:
plugins {
id "com.stehno.gradle.webpreview" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.stehno.gradle:webpreview:0.3.0"
}
}
apply plugin: "com.stehno.gradle.webpreview"