Skip to content

Commit

Permalink
Findbugs now depends on compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Grotzke committed Jul 15, 2009
1 parent 72c4ab8 commit 0b0b456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions findbugs.rb
Expand Up @@ -350,15 +350,15 @@ def findbugs
namespace 'findbugs' do
unless project.compile.target.nil?
# all target files and dirs as targets
findbugs_xml = file findbugs.output_file do
findbugs_xml = file findbugs.output_file => project.compile do
Findbugs.create_xml(findbugs)
end
#findbugs_html = file findbugs.html_out => findbugs_xml do
# Findbugs.create_html(findbugs)
#end
#file findbugs.report_to => findbugs_html

task :text do
task :text => project.compile do
puts "foo"
Findbugs.create_text(findbugs)
end
Expand Down

0 comments on commit 0b0b456

Please sign in to comment.