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