class MavenAT32 < Formula desc "Java-based project management" homepage "https://maven.apache.org/" url "https://www.apache.org/dyn/closer.lua?path=maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.tar.gz" mirror "https://archive.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.tar.gz" sha256 "8c190264bdf591ff9f1268dc0ad940a2726f9e958e367716a09b8aaa7e74a755" license "Apache-2.0" revision 1 bottle :unneeded keg_only :versioned_formula depends_on "openjdk" 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, JAVA_HOME: "${JAVA_HOME:-#{Formula["openjdk"].opt_prefix}}" 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