com.h1grid.cbt.python.envs
Owner:
Joerg Hallmann
Gradle plugin to install different Python environments
https://github.com/joerghall/cbt-python-envs
Sources: https://github.com/joerghall/cbt-python-envs
Version f207324 (latest)
Created 02 February 2018.
Gradle plugin to install different Python environments
Add this plugin to your build using the plugins DSL:
plugins {
id("com.h1grid.cbt.python.envs") version "f207324"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.h1grid.cbt.python.envs:com.h1grid.cbt.python.envs.gradle.plugin:f207324") }
It can then be applied in the precompiled script plugin:plugins { id("com.h1grid.cbt.python.envs") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.h1grid.cbt.python.envs:com.h1grid.cbt.python.envs.gradle.plugin:f207324") } } apply(plugin = "com.h1grid.cbt.python.envs")
- Applying plugins to all subprojects .