diff --git a/spring-boot-project/spring-boot-cli/build.gradle b/spring-boot-project/spring-boot-cli/build.gradle index 515de9e7de5..c0698c38cd5 100644 --- a/spring-boot-project/spring-boot-cli/build.gradle +++ b/spring-boot-project/spring-boot-cli/build.gradle @@ -168,11 +168,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" diff --git a/spring-boot-project/spring-boot-cli/src/main/homebrew/springboot.rb b/spring-boot-project/spring-boot-cli/src/main/homebrew/spring-boot.rb similarity index 96% rename from spring-boot-project/spring-boot-cli/src/main/homebrew/springboot.rb rename to spring-boot-project/spring-boot-cli/src/main/homebrew/spring-boot.rb index 5f338dcceb2..e802190723e 100644 --- a/spring-boot-project/spring-boot-cli/src/main/homebrew/springboot.rb +++ b/spring-boot-project/spring-boot-cli/src/main/homebrew/spring-boot.rb @@ -1,6 +1,6 @@ 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}'