class Maven::Tools::Dependency

Public Instance Methods

type=( t ) click to toggle source

silent default

# File lib/maven/tools/model.rb, line 197
def type=( t )
  if t.to_sym == :jar
    @type = nil
  else
    @type = t
  end
end