br.dev.pedrolamarao.metal.archive
Owner: Pedro LamarĂ£o
Configures a conventional gradle-metal archive component
https://github.com/pedrolamarao/gradle-metal
Sources: https://github.com/pedrolamarao/gradle-metal.git
Version 0.4 (latest)
0.4
Created 24 November 2023.
Configures a conventional gradle-metal archive component
Using the plugins DSL:
plugins {
id("br.dev.pedrolamarao.metal.archive") version "0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("br.dev.pedrolamarao.gradle.metal:plugins:0.4")
}
}
apply(plugin = "br.dev.pedrolamarao.metal.archive")
Using the plugins DSL:
plugins {
id "br.dev.pedrolamarao.metal.archive" version "0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "br.dev.pedrolamarao.gradle.metal:plugins:0.4"
}
}
apply plugin: "br.dev.pedrolamarao.metal.archive"