me.haroldmartin.homebrew.plugin
Owner: Harold Martin
A Gradle plugin to generate homebrew formula for running a jar
https://github.com/hbmartin/gradle-plugin-homebrew
Sources: https://github.com/hbmartin/gradle-plugin-homebrew
Version 0.1.0
0.1.0
Created 27 August 2024.
A Gradle plugin to generate homebrew formula for running a jar
Using the plugins DSL:
plugins {
id("me.haroldmartin.homebrew.plugin") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.haroldmartin:plugin:0.1.0")
}
}
apply(plugin = "me.haroldmartin.homebrew.plugin")
Using the plugins DSL:
plugins {
id "me.haroldmartin.homebrew.plugin" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.haroldmartin:plugin:0.1.0"
}
}
apply plugin: "me.haroldmartin.homebrew.plugin"