搜索 Gradle 插件

com.martmists.kpy.kpy-plugin

所有者: Martmists

KPy 插件是一个可用于从 Kotlin/Native 调用 Python C API 的插件。

https://github.com/martmists-gh/kpy-plugin

源代码: https://github.com/martmists-gh/kpy-plugin

版本 1.0.1 (最新)

1.0.1

创建于 2024 年 6 月 2 日。

KPy 插件是一个可用于从 Kotlin/Native 调用 Python C API 的插件。

使用 插件 DSL

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

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.martmists.kpy:kpy-plugin:1.0.1")
  }
}

apply(plugin = "com.martmists.kpy.kpy-plugin")

使用 插件 DSL

plugins {
  id "com.martmists.kpy.kpy-plugin" version "1.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.martmists.kpy:kpy-plugin:1.0.1"
  }
}

apply plugin: "com.martmists.kpy.kpy-plugin"

了解如何将插件应用于子项目