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