Search Gradle plugins

Version 2.0.0-rc2 (latest)

2.0.0-rc2

Created 04 November 2024.

HTML Sanity Check - Module htmlSanityCheck-gradle-plugin

Using the plugins DSL:

plugins {
  id("org.aim42.htmlSanityCheck") version "2.0.0-rc2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.aim42.htmlSanityCheck:htmlSanityCheck-gradle-plugin:2.0.0-rc2")
  }
}

apply(plugin = "org.aim42.htmlSanityCheck")

Using the plugins DSL:

plugins {
  id "org.aim42.htmlSanityCheck" version "2.0.0-rc2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.aim42.htmlSanityCheck:htmlSanityCheck-gradle-plugin:2.0.0-rc2"
  }
}

apply plugin: "org.aim42.htmlSanityCheck"

Learn how to apply plugins to subprojects