com.hello2morrow.sonargraph.dummy
Owner: Alexander von Zitzewitz
Sonargraph Dummy Plugin
Sources: https://www.hello2morrow.com
Version 11.6.3
11.6.3
Created 07 October 2021.
Sonargraph Dummy Plugin. This is a dummy plugin that does nothing.
Using the plugins DSL:
plugins {
id("com.hello2morrow.sonargraph.dummy") version "11.6.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.hello2morrow:sonargraph-dummy-plugin:11.6.3")
}
}
apply(plugin = "com.hello2morrow.sonargraph.dummy")
Using the plugins DSL:
plugins {
id "com.hello2morrow.sonargraph.dummy" version "11.6.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.hello2morrow:sonargraph-dummy-plugin:11.6.3"
}
}
apply plugin: "com.hello2morrow.sonargraph.dummy"