Search Gradle plugins

com.fuzz.skeleton

Generating ViewHolders from xml files without the use of annotations..

https://github.com/fuzz-productions/skeleton

Version 1.0.0.RELEASE (latest)

Created 21 January 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.fuzz.skeleton") version "1.0.0.RELEASE"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.fuzz.skeleton:skeleton:1.0.0.RELEASE")
  }
}

apply(plugin = "com.fuzz.skeleton")

Using the plugins DSL:

plugins {
  id "com.fuzz.skeleton" version "1.0.0.RELEASE"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.fuzz.skeleton:skeleton:1.0.0.RELEASE"
  }
}

apply plugin: "com.fuzz.skeleton"

Learn how to apply plugins to subprojects