Module: Buildr::CPom::ProjectExtension

Includes:
Extension
Included in:
Project
Defined in:
lib/buildr/java/custom_pom.rb

Instance Method Summary collapse

Methods included from Extension

included

Instance Method Details

#pomObject



287
288
289
290
291
292
293
# File 'lib/buildr/java/custom_pom.rb', line 287

def pom
  unless @pom
    @pom = parent ? parent.pom.dup : Buildr::CustomPom.new
    @pom.send :associate_project, self
  end
  @pom
end