Search Gradle plugins

xyz.jpenilla.gremlin-gradle

Export dependency sets to be resolved by xyz.jpenilla:gremlin-runtime

https://github.com/jpenilla/gremlin

Sources: https://github.com/jpenilla/gremlin

Version 0.0.3

Created 04 November 2023.

Export dependency sets to be resolved by xyz.jpenilla:gremlin-runtime

Using the plugins DSL:

plugins {
  id("xyz.jpenilla.gremlin-gradle") version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("xyz.jpenilla:gremlin-gradle:0.0.3")
  }
}

apply(plugin = "xyz.jpenilla.gremlin-gradle")

Using the plugins DSL:

plugins {
  id "xyz.jpenilla.gremlin-gradle" version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "xyz.jpenilla:gremlin-gradle:0.0.3"
  }
}

apply plugin: "xyz.jpenilla.gremlin-gradle"

Learn how to apply plugins to subprojects