搜索 Gradle 插件

版本 0.11.0 (最新)

0.11.0

创建于 2019 年 5 月 22 日。

将 Jython/Python 库打包到您的 JAR 中

使用 插件 DSL

plugins {
  id("com.github.hierynomus.jython") version "0.11.0"
}

使用 旧版插件应用

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

apply(plugin = "com.github.hierynomus.jython")

使用 插件 DSL

plugins {
  id "com.github.hierynomus.jython" version "0.11.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.hierynomus.gradle.plugins:jython-gradle-plugin:0.11.0"
  }
}

apply plugin: "com.github.hierynomus.jython"

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