Search Gradle plugins

Version 0.1.0

Created 30 September 2016.

Gradle plugin to preview local web content.

Using the plugins DSL:

plugins {
  id("com.stehno.gradle.webpreview") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.stehno.gradle:webpreview:0.1.0")
  }
}

apply(plugin = "com.stehno.gradle.webpreview")

Using the plugins DSL:

plugins {
  id "com.stehno.gradle.webpreview" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.stehno.gradle:webpreview:0.1.0"
  }
}

apply plugin: "com.stehno.gradle.webpreview"

Learn how to apply plugins to subprojects