class Mvnvm < Formula desc "Maven version manager" homepage "http://mvnvm.org" url "https://bitbucket.org/mjensen/mvnvm/get/mvnvm-1.0.7.zip" sha256 "1cd930d2d00bb8cdbc3f3a6c8e2ff1b98ba2bc5ffd77d639219b3dce273f826b" head "https://bitbucket.org/mjensen/mvnvm.git" bottle :unneeded depends_on :java => "1.7+" def install bin.install "mvn" bin.env_script_all_files(libexec/"bin", Language::Java.overridable_java_home_env("1.7+")) end conflicts_with "maven", :because => "also installs a 'mvn' executable" test do (testpath/"settings.xml").write <<-EOS.undent #{testpath}/repository EOS (testpath/"mvnvm.properties").write <<-EOS.undent mvn_version=3.2.5 EOS (testpath/"pom.xml").write <<-EOS.undent 4.0.0 org.homebrew maven-test 1.0.0-SNAPSHOT EOS (testpath/"src/main/java/org/homebrew/MavenTest.java").write <<-EOS.undent package org.homebrew; public class MavenTest { public static void main(String[] args) { System.out.println("Testing Maven with Homebrew!"); } } EOS system "#{bin}/mvn", "-gs", "#{testpath}/settings.xml", "compile" end end