55 lines
1.9 KiB
Ruby
55 lines
1.9 KiB
Ruby
class Mvnvm < Formula
|
|
desc "Maven version manager"
|
|
homepage "https://mvnvm.org/"
|
|
url "https://bitbucket.org/mjensen/mvnvm/get/mvnvm-1.0.19.tar.gz"
|
|
sha256 "2c65b386b2a29e93def6efa7f8c6cec1e5d96d811e9df20ce81c10cf87f9d644"
|
|
license "Apache-2.0"
|
|
head "https://bitbucket.org/mjensen/mvnvm.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "6b0b68c02019910862933cfa98830a9346cafaf49026ab254f575308414487c6"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
conflicts_with "maven", because: "also installs a 'mvn' executable"
|
|
|
|
def install
|
|
bin.install "mvn"
|
|
bin.install "mvnDebug"
|
|
bin.env_script_all_files libexec/"bin", Language::Java.overridable_java_home_env
|
|
end
|
|
|
|
test do
|
|
(testpath/"settings.xml").write <<~EOS
|
|
<settings><localRepository>#{testpath}/repository</localRepository></settings>
|
|
EOS
|
|
(testpath/"mvnvm.properties").write <<~EOS
|
|
mvn_version=3.5.2
|
|
EOS
|
|
(testpath/"pom.xml").write <<~EOS
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="https://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>
|
|
<properties>
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
</properties>
|
|
</project>
|
|
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", "-gs", "#{testpath}/settings.xml", "compile"
|
|
end
|
|
end
|