ru.craftcoderr.gradledeploy
Owner: Nikita Klyshko
Gradle plugin providing artifact deployment to local directories
https://github.com/CraftCoderr/GradleDeploy
Sources: https://github.com/CraftCoderr/GradleDeploy
Version 0.2.5
0.2.5
Created 14 November 2021.
Gradle plugin providing artifact deployment to local directories
Using the plugins DSL:
plugins {
id("ru.craftcoderr.gradledeploy") version "0.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ru.craftcoderr:gradledeploy:0.2.5")
}
}
apply(plugin = "ru.craftcoderr.gradledeploy")
Using the plugins DSL:
plugins {
id "ru.craftcoderr.gradledeploy" version "0.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ru.craftcoderr:gradledeploy:0.2.5"
}
}
apply plugin: "ru.craftcoderr.gradledeploy"