forked from atlassian/homebrew-tap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaven221.rb
52 lines (45 loc) · 1.79 KB
/
maven221.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
## from https://github.com/Homebrew/homebrew/blob/1ebb60b6e5762beb26cfb62a8a1f4ef1692f6540/Library/Formula/maven.rb
class Maven221 < Formula
homepage "https://maven.apache.org/"
url "https://archive.apache.org/dist/maven/maven-2/2.2.1/binaries/apache-maven-2.2.1-bin.tar.gz"
sha256 "3ac63025e5860c4d856e172ab556d14b52f9b1f1"
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
conflicts_with "mvnvm", :because => "also installs a 'mvn' executable"
test do
(testpath/"pom.xml").write <<-EOS
<?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
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