Search Gradle plugins

Version 0.1.6 (latest)

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"

Learn how to apply plugins to subprojects