Method: Naether::Maven#initialize

Defined in:
lib/naether/maven.rb

#initialize(pom_path = nil) ⇒ Maven

Create new instance



51
52
53
54
55
56
57
58
# File 'lib/naether/maven.rb', line 51

def initialize(pom_path = nil)
  if pom_path
    @project = Naether::Java.create("com.tobedevoured.naether.maven.Project", pom_path )
  else
    @project = Naether::Java.create("com.tobedevoured.naether.maven.Project" )
  end
  
end