com.optum.giraffle
Owner:
Joshua Meekhof
Provides dsl and support for connection to Tigergraph servers, and executing scripts against Tigergraph.
https://github.com/Optum/giraffle.git
Sources: https://github.com/Optum/giraffle.git
Version 1.3.4.1-SNAPSHOT
Created 09 June 2020.
Provides dsl and support for connection to Tigergraph servers, and executing scripts against Tigergraph.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.optum.giraffle") version "1.3.4.1-SNAPSHOT"
}
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.optum.giraffle:com.optum.giraffle.gradle.plugin:1.3.4.1-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("com.optum.giraffle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.optum.giraffle:com.optum.giraffle.gradle.plugin:1.3.4.1-SNAPSHOT") } } apply(plugin = "com.optum.giraffle")
- Applying plugins to all subprojects .