Search Gradle plugins

Version 0.9.9 (latest)

Created 19 June 2018.

Checks HTML files for broken links, missing images etc.

Using the plugins DSL:

plugins {
  id("com.vogella.htmlSanityCheck") version "0.9.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.vogella:htmlSanityCheck:0.9.9")
  }
}

apply(plugin = "com.vogella.htmlSanityCheck")

Using the plugins DSL:

plugins {
  id "com.vogella.htmlSanityCheck" version "0.9.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.vogella:htmlSanityCheck:0.9.9"
  }
}

apply plugin: "com.vogella.htmlSanityCheck"

Learn how to apply plugins to subprojects