Method: Naether::Maven#add_dependency

Defined in:
lib/naether/maven.rb

#add_dependency(notation, scope = nil) ⇒ Object

Add dependency by scope

Parameters:

  • notation (String)
  • scope (String) (defaults to: nil)


102
103
104
# File 'lib/naether/maven.rb', line 102

def add_dependency( notation, scope = nil )
  @project.addDependency( notation, scope )
end