com.analog.garage.pygrad-base
Owner: Christopher Barber
A basic python plugin (not stable!)
https://github.com/analog-garage/pygrad
Sources: https://github.com/AnalogDevicesLyricLabs/pygrad
Using the plugins DSL:
plugins {
id("com.analog.garage.pygrad-base") version "0.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.analog.garage:pygrad:0.1.10")
}
}
apply(plugin = "com.analog.garage.pygrad-base")
Using the plugins DSL:
plugins {
id "com.analog.garage.pygrad-base" version "0.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.analog.garage:pygrad:0.1.10"
}
}
apply plugin: "com.analog.garage.pygrad-base"