Search Gradle plugins

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"

Learn how to apply plugins to subprojects