diff options
| author | Luke Amdor | 2009-09-11 15:52:51 -0500 |
|---|---|---|
| committer | Max Howell | 2009-09-18 13:37:13 +0100 |
| commit | eb6dce49478d7472d086555c9ec173576a2d476f (patch) | |
| tree | c96820288e1b6c7cf5dc63df216c0d6a53941000 /Library/Formula | |
| parent | cb9916ed01ec14486c67645dabc0841db746293c (diff) | |
| download | homebrew-eb6dce49478d7472d086555c9ec173576a2d476f.tar.bz2 | |
Maven formula
Apache Maven is a software project management and comprehension tool. Based on
the concept of a project object model (POM), Maven can manage a project's
build, reporting and documentation from a central piece of information.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/maven.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/maven.rb b/Library/Formula/maven.rb new file mode 100644 index 000000000..7f20db224 --- /dev/null +++ b/Library/Formula/maven.rb @@ -0,0 +1,12 @@ +require 'brewkit' + +class Maven <Formula + @url='http://apache.mirrors.timporter.net/maven/binaries/apache-maven-2.2.1-bin.tar.gz' + @version="2.2.1" + @homepage='http://maven.apache.org/' + @md5='3f829ed854cbacdaca8f809e4954c916' + + def install + prefix.install %w[bin conf boot lib] + end +end |
