Search Gradle plugins

gryphon.gradle

Owner: Nano

Gryphon Loader Gradle plugin

Sources: http://github.com/gryphon/gradle

Version 1.0.0 (latest)

1.0.0

Created 18 September 2016.

Gryphon Loader Gradle plugin

Using the plugins DSL:

plugins {
  id("gryphon.gradle") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.gryphon.gradle:gryphon.gradle:1.0.0")
  }
}

apply(plugin = "gryphon.gradle")

Using the plugins DSL:

plugins {
  id "gryphon.gradle" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.gryphon.gradle:gryphon.gradle:1.0.0"
  }
}

apply plugin: "gryphon.gradle"

Learn how to apply plugins to subprojects