forked from jruby/jruby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaven.rake
44 lines (41 loc) · 1.15 KB
/
maven.rake
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
namespace :maven do
class Pom
def initialize(filename)
@filename = filename
@lines = IO.readlines(filename)
end
def update_version(version)
group = nil
artifact = nil
@lines.each do |line|
match = line.match(%r{<groupId>([^<]+)</groupId>})
if match
group = match[1]
next
end
match = line.match(%r{<artifactId>([^<]+)</artifactId>})
if match
artifact = match[1]
next
end
if line =~ %r{<version>[0-9][^<]+</version>} && group =~ /^org.jruby/ && artifact =~ /^(jruby|shared)/
line.sub!(/<version>([^<]+)<\/version>/, "<version>#{version}</version>")
end
end
end
def save
File.open(@filename, 'w') {|f| @lines.each {|l| f << l } }
end
end
desc "Update versions in maven poms with string passed in ENV['VERSION']"
task :updatepoms do
version = ENV['VERSION'] or abort("Pass the new version with VERSION={version}")
dir = Dir.pwd
Dir["#{dir}/**/pom.xml"].each do |f|
puts "updating #{f}"
pom = Pom.new(f)
pom.update_version(version)
pom.save
end
end
end