com.vogella.htmlSanityCheck
Owner: Lars Vogel
Checks HTML files for broken links, missing images etc.
https://github.com/aim42/htmlSanityCheck
Sources: https://github.com/aim42/htmlSanityCheck
Version 0.9.9 (latest)
0.9.9
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"