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.6 (latest)

Created 06 February 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects