org.ysb33r.ivypot
Owner: Schalk Cronjé
A plugin that keeps a local repository for offline of isolated environments
https://gitlab.com/ysb33rOrg/ivypot-gradle-plugin/README.adoc
Sources: https://github.com/ysb33r/ivypot-gradle-plugin.git
Version 1.0.0 (latest)
1.0.0
Created 04 June 2023.
A plugin that keeps a local repository for offline of isolated environments
Using the plugins DSL:
plugins {
id("org.ysb33r.ivypot") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.ysb33r.ivypot:ivypot:1.0.0")
}
}
apply(plugin = "org.ysb33r.ivypot")
Using the plugins DSL:
plugins {
id "org.ysb33r.ivypot" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.ysb33r.ivypot:ivypot:1.0.0"
}
}
apply plugin: "org.ysb33r.ivypot"