Search Gradle plugins

Version 0.13.3

Created 12 May 2021.

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

Using the plugins DSL:

plugins {
  id("org.ysb33r.ivypot.binary.base") version "0.13.3"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "org.ysb33r.ivypot.binary.base" version "0.13.3"
}

Using legacy plugin application:

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

apply plugin: "org.ysb33r.ivypot.binary.base"

Learn how to apply plugins to subprojects