Search Gradle plugins

Version 0.2.3

0.2.3

Created 04 May 2022.

KPy Plugin is a plugin to target the Python C API from Kotlin/Native.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.martmists.kpy.kpy-plugin") version "0.2.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.martmists.kpy:kpy-plugin:0.2.3")
      }
    }
    
    apply(plugin = "com.martmists.kpy.kpy-plugin")
  • Applying plugins to all subprojects .