com.h1grid.cbt.python.envs
Owner:
Joerg Hallmann
Gradle plugin to install different Python environments
https://github.com/joerghall/cbt-python-envs
Version f207324 (latest)
Created 02 February 2018.
Gradle plugin to install different Python environments
Using the plugins DSL:
plugins {
id("com.h1grid.cbt.python.envs") version "f207324"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.h1grid.cbt.python:cbt-python-envs:f207324")
}
}
apply(plugin = "com.h1grid.cbt.python.envs")
Using the plugins DSL:
plugins {
id "com.h1grid.cbt.python.envs" version "f207324"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.h1grid.cbt.python:cbt-python-envs:f207324"
}
}
apply plugin: "com.h1grid.cbt.python.envs"