com.nexstra.ivypot.binary.base
Owner: David Lee
A plugin that keeps a local repository for offline of isolated environments
https://github.com/DALDEI/ivypot-gradle-plugin
Sources: https://github.com/DALDEI/ivypot-gradle-plugin.git
Version 0.11 (latest)
0.11
Created 08 December 2019.
A plugin that keeps a local repository for offline of isolated environments
Using the plugins DSL:
plugins {
id("com.nexstra.ivypot.binary.base") version "0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.nexstra.gradle:ivypot:0.11")
}
}
apply(plugin = "com.nexstra.ivypot.binary.base")
Using the plugins DSL:
plugins {
id "com.nexstra.ivypot.binary.base" version "0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.nexstra.gradle:ivypot:0.11"
}
}
apply plugin: "com.nexstra.ivypot.binary.base"