Search Gradle plugins

Version 0.3.7

Created 23 March 2016.

A plugin that keeps a local repository for offline of isolated environments

Using the plugins DSL:

plugins {
  id("org.ysb33r.ivypot") version "0.3.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.ysb33r.gradle:ivypot:0.3.7")
  }
}

apply(plugin = "org.ysb33r.ivypot")

Using the plugins DSL:

plugins {
  id "org.ysb33r.ivypot" version "0.3.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.ysb33r.gradle:ivypot:0.3.7"
  }
}

apply plugin: "org.ysb33r.ivypot"

Learn how to apply plugins to subprojects