class MavenAT31 < Formula desc "Java-based project management" homepage "https://maven.apache.org/" url "https://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.1.1/binaries/apache-maven-3.1.1-bin.tar.gz" sha256 "077ed466455991d5abb4748a1d022e2d2a54dc4d557c723ecbacdc857c61d51b" bottle do cellar :any_skip_relocation sha256 "816abdeb1351192b568e21da788f39fb53d80bacb97c25b453efffe77456320a" => :high_sierra sha256 "eebf2748f352b0bc30d358f47e0ecd33ddb1d4286a801c2971fa54ba10639ae8" => :sierra sha256 "ea999fb27f3944de65bc42f824b6f16a6b8f4d31c04624ac233e997908284310" => :el_capitan sha256 "ea999fb27f3944de65bc42f824b6f16a6b8f4d31c04624ac233e997908284310" => :yosemite end depends_on :java def install # Remove windows files rm_f Dir["bin/*.bat"] # Fix the permissions on the global settings file. chmod 0644, "conf/settings.xml" prefix.install_metafiles 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