Search Gradle plugins

io.github.bkmbigo.epit

The Plugins adds type-safe dependency declarations to your kotlin build scripts

https://www.github.com/bkmbigo/epit

Sources: https://www.github.com/bkmbigo/epit

Version 2024.01.01-preview

Created 13 January 2024.

The Plugins adds type-safe dependency declarations to your kotlin build scripts

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.bkmbigo.epit") version "2024.01.01-preview"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.bkmbigo.epit:io.github.bkmbigo.epit.gradle.plugin:2024.01.01-preview")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.bkmbigo.epit")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.bkmbigo.epit:io.github.bkmbigo.epit.gradle.plugin:2024.01.01-preview")
      }
    }
    
    apply(plugin = "io.github.bkmbigo.epit")
  • Applying plugins to all subprojects .