Search Gradle plugins

io.github.kostyanoy.helios-push

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

Created 19 October 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"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.kostyanoy:helios-push:1.0")
  }
}

apply(plugin = "io.github.kostyanoy.helios-push")

Using the plugins DSL:

plugins {
  id "io.github.kostyanoy.helios-push" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.kostyanoy:helios-push:1.0"
  }
}

apply plugin: "io.github.kostyanoy.helios-push"

Learn how to apply plugins to subprojects