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



251
252
253
254
255
256
257
# File 'lib/buildr/java/custom_pom.rb', line 251

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