aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Buffington2011-01-13 06:01:25 -0500
committerMike McQuaid2011-01-16 16:21:10 +0000
commit03b288ac0964e5d996a62a5dc0133e2360540496 (patch)
tree7b5435fbee02bbc4e27ac5d33ff7223348819473
parent52dfc14e3f0dc4b05df9265ffe4c53e89e1f0762 (diff)
downloadhomebrew-03b288ac0964e5d996a62a5dc0133e2360540496.tar.bz2
Update maven to release 3.0.2.
Closes #3892. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
-rw-r--r--Library/Formula/maven.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/Library/Formula/maven.rb b/Library/Formula/maven.rb
index ff16030fa..fbfde69a6 100644
--- a/Library/Formula/maven.rb
+++ b/Library/Formula/maven.rb
@@ -1,14 +1,17 @@
require 'formula'
class Maven <Formula
- url 'http://www.apache.org/dist/maven/binaries/apache-maven-3.0.1-bin.tar.gz'
+ url 'http://www.apache.org/dist/maven/binaries/apache-maven-3.0.2-bin.tar.gz'
homepage 'http://maven.apache.org/'
- md5 '98379efcef6b07bc44c27ec8382ad366'
+ md5 '01496e49c1fae860cdf573c6316f85c4'
def install
# Remove windows files
rm_f Dir["bin/*.bat"]
+ # Fix the permissions on the global settings file.
+ chmod 0644, Dir["conf/settings.xml"]
+
# Install jars in libexec to avoid conflicts
prefix.install %w{ NOTICE.txt LICENSE.txt README.txt }
libexec.install Dir['*']