class Maven < Formula desc "Java-based project management" homepage "https://maven.apache.org/" url "https://www.apache.org/dyn/closer.lua?path=maven/maven-3/3.8.7/binaries/apache-maven-3.8.7-bin.tar.gz" mirror "https://archive.apache.org/dist/maven/maven-3/3.8.7/binaries/apache-maven-3.8.7-bin.tar.gz" sha256 "628b49352130d1d25d5519b1c724f0efe58b86bad55f37a694ca8f73f11e3604" license "Apache-2.0" livecheck do url "https://maven.apache.org/download.cgi" regex(/href=.*?apache-maven[._-]v?(\d+(?:\.\d+)+)-bin\.t/i) end bottle do sha256 cellar: :any_skip_relocation, arm64_ventura: "e7b6ec1d8230c404f0e58757a8de9481cf0cd57836599d55297ffdb3f81fccb2" sha256 cellar: :any_skip_relocation, arm64_monterey: "e7b6ec1d8230c404f0e58757a8de9481cf0cd57836599d55297ffdb3f81fccb2" sha256 cellar: :any_skip_relocation, arm64_big_sur: "e7b6ec1d8230c404f0e58757a8de9481cf0cd57836599d55297ffdb3f81fccb2" sha256 cellar: :any_skip_relocation, ventura: "92b221a5059507f0ed5f504c30376f206c5c624411bcfbfb7abce0d6324643c0" sha256 cellar: :any_skip_relocation, monterey: "92b221a5059507f0ed5f504c30376f206c5c624411bcfbfb7abce0d6324643c0" sha256 cellar: :any_skip_relocation, big_sur: "92b221a5059507f0ed5f504c30376f206c5c624411bcfbfb7abce0d6324643c0" sha256 cellar: :any_skip_relocation, x86_64_linux: "e7b6ec1d8230c404f0e58757a8de9481cf0cd57836599d55297ffdb3f81fccb2" end depends_on "openjdk" conflicts_with "mvnvm", because: "also installs a 'mvn' executable" def install # Remove windows files rm_f Dir["bin/*.cmd"] # Fix the permissions on the global settings file. chmod 0644, "conf/settings.xml" libexec.install Dir["*"] # Leave conf file in libexec. The mvn symlink will be resolved and the conf # file will be found relative to it Pathname.glob("#{libexec}/bin/*") do |file| next if file.directory? basename = file.basename next if basename.to_s == "m2.conf" (bin/basename).write_env_script file, Language::Java.overridable_java_home_env end end test do (testpath/"pom.xml").write <<~EOS 4.0.0 org.homebrew maven-test 1.0.0-SNAPSHOT 1.8 1.8 UTF-8 EOS (testpath/"src/main/java/org/homebrew/MavenTest.java").write <<~EOS package org.homebrew; public class MavenTest { public static void main(String[] args) { System.out.println("Testing Maven with Homebrew!"); } } EOS system "#{bin}/mvn", "compile", "-Duser.home=#{testpath}" end end