Commit 76aa33b6 authored by Phillip Webb's avatar Phillip Webb

Merge branch '2.3.x' into 2.4.x

parents 04616a01 a24ec9d3
...@@ -168,11 +168,11 @@ def scoopManifestArtifact = artifacts.add("archives", file("${buildDir}/scoop/sp ...@@ -168,11 +168,11 @@ def scoopManifestArtifact = artifacts.add("archives", file("${buildDir}/scoop/sp
task homebrewFormula(type: org.springframework.boot.build.cli.HomebrewFormula) { task homebrewFormula(type: org.springframework.boot.build.cli.HomebrewFormula) {
dependsOn tar dependsOn tar
outputDir = file("${buildDir}/homebrew") outputDir = file("${buildDir}/homebrew")
template = file("src/main/homebrew/springboot.rb") template = file("src/main/homebrew/spring-boot.rb")
archive = tar.archiveFile archive = tar.archiveFile
} }
def homebrewFormulaArtifact = artifacts.add("archives", file("${buildDir}/homebrew/springboot.rb")) { def homebrewFormulaArtifact = artifacts.add("archives", file("${buildDir}/homebrew/spring-boot.rb")) {
type "rb" type "rb"
classifier "homebrew" classifier "homebrew"
builtBy "homebrewFormula" builtBy "homebrewFormula"
......
require 'formula' require 'formula'
class Springboot < Formula class SpringBoot < Formula
homepage 'https://spring.io/projects/spring-boot' homepage 'https://spring.io/projects/spring-boot'
url 'https://repo.spring.io/${repo}/org/springframework/boot/spring-boot-cli/${project.version}/spring-boot-cli-${project.version}-bin.tar.gz' url 'https://repo.spring.io/${repo}/org/springframework/boot/spring-boot-cli/${project.version}/spring-boot-cli-${project.version}-bin.tar.gz'
version '${project.version}' version '${project.version}'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment