io.github.cdsap.gradleprocess
Owner: Inaki Villar Algaba
Retrieve information of the Gradle processes after the build execution
https://github.com/cdsap/InfoGradleProcess
Sources: https://github.com/cdsap/InfoGradleProcess
Version 0.1.2 (latest)
0.1.2
Created 25 April 2024.
Retrieve information of the Gradle processes after the build execution
Using the plugins DSL:
plugins {
id("io.github.cdsap.gradleprocess") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.cdsap:InfoGradleProcess:0.1.2")
}
}
apply(plugin = "io.github.cdsap.gradleprocess")
Using the plugins DSL:
plugins {
id "io.github.cdsap.gradleprocess" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.cdsap:InfoGradleProcess:0.1.2"
}
}
apply plugin: "io.github.cdsap.gradleprocess"