com.smplio.gradle.build-insights
Owner: Dmytro Rodionov
Swissknife plugin, that let's you visualize your build statistics
https://github.com/smplio/GradleInsightPlugin
Sources: https://github.com/smplio/GradleInsightPlugin
Version 0.5 (latest)
0.5
Created 17 November 2024.
Swissknife plugin, that let's you visualize your build statistics
Using the plugins DSL:
plugins {
id("com.smplio.gradle.build-insights") version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.smplio.gradle.build.insights:GradleInsightPlugin:0.5")
}
}
apply(plugin = "com.smplio.gradle.build-insights")
Using the plugins DSL:
plugins {
id "com.smplio.gradle.build-insights" version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.smplio.gradle.build.insights:GradleInsightPlugin:0.5"
}
}
apply plugin: "com.smplio.gradle.build-insights"