com.hello2morrow.sonargraph.dummy
Owner: Alexander von Zitzewitz
Sonargraph Dummy Plugin
Sources: https://www.hello2morrow.com
Using the plugins DSL:
plugins {
id("com.hello2morrow.sonargraph.dummy") version "10.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.hello2morrow:sonargraph-build-client:10.4.1")
}
}
apply(plugin = "com.hello2morrow.sonargraph.dummy")
Using the plugins DSL:
plugins {
id "com.hello2morrow.sonargraph.dummy" version "10.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.hello2morrow:sonargraph-build-client:10.4.1"
}
}
apply plugin: "com.hello2morrow.sonargraph.dummy"