org.openrepose.gradle.plugins.linkchecker
Owner: Stabby the Narwhal
Gradle plugin to ease development containg HTML using the linkchecker task
https://github.com/rackerlabs/gradle-linkchecker-plugin
Sources: https://github.com/rackerlabs/gradle-linkchecker-plugin
Version 1.0.0 (latest)
1.0.0
Created 02 April 2018.
Gradle plugin to ease development containg HTML using the linkchecker task
Using the plugins DSL:
plugins {
id("org.openrepose.gradle.plugins.linkchecker") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.openrepose:gradle-linkchecker-plugin:1.0.0")
}
}
apply(plugin = "org.openrepose.gradle.plugins.linkchecker")
Using the plugins DSL:
plugins {
id "org.openrepose.gradle.plugins.linkchecker" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.openrepose:gradle-linkchecker-plugin:1.0.0"
}
}
apply plugin: "org.openrepose.gradle.plugins.linkchecker"