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 1.0 (latest)
1.0
Created 29 July 2019.
Gradle plugin providing artifact deployment to local directories
Using the plugins DSL:
plugins {
id("ru.craftcoderr.gradledeploy") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.ru.craftcoderr.gradledeploy:gradle-deploy-plugin:1.0")
}
}
apply(plugin = "ru.craftcoderr.gradledeploy")
Using the plugins DSL:
plugins {
id "ru.craftcoderr.gradledeploy" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.ru.craftcoderr.gradledeploy:gradle-deploy-plugin:1.0"
}
}
apply plugin: "ru.craftcoderr.gradledeploy"