Search Gradle plugins

Version 0.0.1

0.0.1

Created 26 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.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.haroldmartin:plugin:0.0.1")
  }
}

apply(plugin = "me.haroldmartin.homebrew.plugin")

Using the plugins DSL:

plugins {
  id "me.haroldmartin.homebrew.plugin" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.haroldmartin:plugin:0.0.1"
  }
}

apply plugin: "me.haroldmartin.homebrew.plugin"

Learn how to apply plugins to subprojects