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.0.3
1.0.3
Created 12 June 2017.
Allows execution of jython commands and scripts
Using the plugins DSL:
plugins {
id("com.github.rzabini.gradle-jython") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.rzabini:gradle-jython:1.0.3")
}
}
apply(plugin = "com.github.rzabini.gradle-jython")
Using the plugins DSL:
plugins {
id "com.github.rzabini.gradle-jython" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.rzabini:gradle-jython:1.0.3"
}
}
apply plugin: "com.github.rzabini.gradle-jython"