com.github.rzabini.gradle-jython
Owner: rzabini
Allows execution of jython commands and scripts
https://github.com/rzabini/gradle-jython
Sources: https://github.com/rzabini/gradle-jython
Version 1.1.0 (latest)
1.1.0
Created 04 July 2021.
Allows execution of jython commands and scripts
Using the plugins DSL:
plugins {
id("com.github.rzabini.gradle-jython") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.rzabini:gradle-jython:1.1.0")
}
}
apply(plugin = "com.github.rzabini.gradle-jython")
Using the plugins DSL:
plugins {
id "com.github.rzabini.gradle-jython" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.rzabini:gradle-jython:1.1.0"
}
}
apply plugin: "com.github.rzabini.gradle-jython"