Search Gradle plugins

com.heretere.hdl.plugin

Download dependencies at runtime instead of shading to match file size limitations

https://github.com/heretere/hdl

Sources: https://github.com/heretere/hdl

Version 2.0.1 (latest)

Created 28 October 2021.

Download dependencies at runtime instead of shading to match file size limitations

Using the plugins DSL:

plugins {
  id("com.heretere.hdl.plugin") version "2.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.heretere.hdl:plugin:2.0.1")
  }
}

apply(plugin = "com.heretere.hdl.plugin")

Using the plugins DSL:

plugins {
  id "com.heretere.hdl.plugin" version "2.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.heretere.hdl:plugin:2.0.1"
  }
}

apply plugin: "com.heretere.hdl.plugin"

Learn how to apply plugins to subprojects