org.aim42.htmlSanityCheck
Owner: Gerd Aschemann
Checks HTML files for broken links, missing images etc.
Sources: https://github.com/aim42/htmlSanityCheck
Version 2.0.0-rc2 (latest)
Created 04 November 2024.
HTML Sanity Check - Module htmlSanityCheck-gradle-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("org.aim42.htmlSanityCheck") version "2.0.0-rc2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.aim42.htmlSanityCheck:org.aim42.htmlSanityCheck.gradle.plugin:2.0.0-rc2") }
It can then be applied in the precompiled script plugin:plugins { id("org.aim42.htmlSanityCheck") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.aim42.htmlSanityCheck:org.aim42.htmlSanityCheck.gradle.plugin:2.0.0-rc2") } } apply(plugin = "org.aim42.htmlSanityCheck")
- Applying plugins to all subprojects .