Search Gradle plugins

Version 1.6.0 (latest)

1.6.0

Created 28 November 2024.

Gradle project plugin designed to make working with Kord Extensions simpler.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.kordex.gradle.kordex") version "1.6.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.kordex.gradle.plugins:kordex:1.6.0")
      }
    }
    
    apply(plugin = "dev.kordex.gradle.kordex")
  • Applying plugins to all subprojects .