com.hello2morrow.sonargraph
Owner: Alexander von Zitzewitz
Sonargraph Gradle Plugin
Sources: https://www.hello2morrow.com
Version 12.6.1
12.6.1
Created 25 May 2023.
Sonargraph Gradle Plugin. Integrates Sonargraph into your Gradle build.
Using the plugins DSL:
plugins {
id("com.hello2morrow.sonargraph") version "12.6.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.hello2morrow:sonargraph-gradle-plugin:12.6.1")
}
}
apply(plugin = "com.hello2morrow.sonargraph")
Using the plugins DSL:
plugins {
id "com.hello2morrow.sonargraph" version "12.6.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.hello2morrow:sonargraph-gradle-plugin:12.6.1"
}
}
apply plugin: "com.hello2morrow.sonargraph"