2014-09-05 01:13:11 +00:00
|
|
|
class Mvnvm < Formula
|
|
|
|
homepage "http://mvnvm.org"
|
2015-05-19 01:53:06 +00:00
|
|
|
url "https://bitbucket.org/mjensen/mvnvm/get/mvnvm-1.0.5.zip"
|
|
|
|
sha256 "dd065cfbf40bfc2e4623569cd2f0d435cec2b61953d47b8e4d7213b23e3178e5"
|
2014-09-05 01:13:11 +00:00
|
|
|
|
|
|
|
head "https://bitbucket.org/mjensen/mvnvm.git"
|
|
|
|
|
2015-02-01 12:37:13 +00:00
|
|
|
depends_on :java => "1.7+"
|
2014-09-05 01:13:11 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "mvn"
|
2015-03-12 15:36:55 +00:00
|
|
|
bin.env_script_all_files(libexec/"bin", Language::Java.overridable_java_home_env("1.7+"))
|
2014-09-05 01:13:11 +00:00
|
|
|
end
|
|
|
|
|
2015-02-01 12:37:13 +00:00
|
|
|
conflicts_with "maven", :because => "also installs a 'mvn' executable"
|
2014-09-05 01:13:11 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"mvnvm.properties").write <<-EOS.undent
|
2015-01-08 01:12:27 +00:00
|
|
|
mvn_version=3.2.5
|
2014-09-05 01:13:11 +00:00
|
|
|
EOS
|
|
|
|
(testpath/"pom.xml").write <<-EOS.undent
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.homebrew</groupId>
|
|
|
|
<artifactId>maven-test</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</project>
|
|
|
|
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", "compile"
|
|
|
|
end
|
|
|
|
end
|