Commit a24ec9d3 authored by Phillip Webb's avatar Phillip Webb

Merge branch '2.2.x' into 2.3.x

parents ef09982b 46629ef5
......@@ -167,11 +167,11 @@ def scoopManifestArtifact = artifacts.add("archives", file("${buildDir}/scoop/sp
task homebrewFormula(type: org.springframework.boot.build.cli.HomebrewFormula) {
dependsOn tar
outputDir = file("${buildDir}/homebrew")
template = file("src/main/homebrew/springboot.rb")
template = file("src/main/homebrew/spring-boot.rb")
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"
classifier "homebrew"
builtBy "homebrewFormula"
......
require 'formula'
class Springboot < Formula
class SpringBoot < Formula
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'
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