aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorLuke Amdor2009-09-11 15:52:51 -0500
committerMax Howell2009-09-18 13:37:13 +0100
commiteb6dce49478d7472d086555c9ec173576a2d476f (patch)
treec96820288e1b6c7cf5dc63df216c0d6a53941000 /Library/Formula
parentcb9916ed01ec14486c67645dabc0841db746293c (diff)
downloadhomebrew-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.rb12
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