com.github.hierynomus.jython
Owner: Jeroen van Erp
Bundle Jython/Python libraries in your JAR
https://github.com/hierynomus/jython-gradle-plugin
Sources: https://github.com/hierynomus/jython-gradle-plugin.git
Version 0.11.0 (latest)
0.11.0
Created 22 May 2019.
Bundle Jython/Python libraries in your JAR
Using the plugins DSL:
plugins {
id("com.github.hierynomus.jython") version "0.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.hierynomus.gradle.plugins:jython-gradle-plugin:0.11.0")
}
}
apply(plugin = "com.github.hierynomus.jython")
Using the plugins DSL:
plugins {
id "com.github.hierynomus.jython" version "0.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.hierynomus.gradle.plugins:jython-gradle-plugin:0.11.0"
}
}
apply plugin: "com.github.hierynomus.jython"