io.github.kostyanoy.helios-push
Owner: Kosty Manuhin
This plugin allows you to push your files to the helios server by setting up parameters only once
https://github.com/kostyanoy/helios-push
Sources: https://github.com/kostyanoy/helios-push.git
Version 1.0.2 (latest)
1.0.2
Created 09 November 2022.
This plugin allows you to push your files to the helios server by setting up parameters only once
Using the plugins DSL:
plugins {
id("io.github.kostyanoy.helios-push") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kostyanoy:helios-push:1.0.2")
}
}
apply(plugin = "io.github.kostyanoy.helios-push")
Using the plugins DSL:
plugins {
id "io.github.kostyanoy.helios-push" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kostyanoy:helios-push:1.0.2"
}
}
apply plugin: "io.github.kostyanoy.helios-push"