Search Gradle plugins

pl.oakfusion.downloadfilewithhttpget

Plugin for OakForge project, using downloadURL and downloadDeployTokenfrom properties of project where it is applied to send get request with headerDEPLOY-TOKEN: ${downloadDeployToken} and save response in file named same aswhat is included in downloadURL after last /

https://github.com/MaksymilianJava

Sources: https://github.com/MaksymilianJava

Version 0.1-SNAPSHOT

Created 12 February 2021.

Plugin for OakForge project, using downloadURL and downloadDeployTokenfrom properties of project where it is applied to send get request with headerDEPLOY-TOKEN: ${downloadDeployToken} and save response in file named same aswhat is included in downloadURL after last /

Using the plugins DSL:

plugins {
  id("pl.oakfusion.downloadfilewithhttpget") version "0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("pl.oakfusion:DownloadFileHttpGetPlugim:0.1-SNAPSHOT")
  }
}

apply(plugin = "pl.oakfusion.downloadfilewithhttpget")

Using the plugins DSL:

plugins {
  id "pl.oakfusion.downloadfilewithhttpget" version "0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "pl.oakfusion:DownloadFileHttpGetPlugim:0.1-SNAPSHOT"
  }
}

apply plugin: "pl.oakfusion.downloadfilewithhttpget"

Learn how to apply plugins to subprojects