Class: Buildr::Eclipse::Options
Instance Attribute Summary collapse
-
#m2_repo_var(*values) ⇒ Object
The classpath variable used to point at the local maven2 repository.
Instance Method Summary collapse
-
#initialize(project) ⇒ Options
constructor
A new instance of Options.
Constructor Details
Instance Attribute Details
#m2_repo_var(*values) ⇒ Object
The classpath variable used to point at the local maven2 repository. Example:
eclipse..m2_repo_var = 'M2_REPO'
181 182 183 184 185 186 187 188 |
# File 'lib/buildr/ide/eclipse.rb', line 181 def m2_repo_var(*values) fail "m2_repo_var can only accept one value: #{values}" if values.size > 1 if values.size > 0 @m2_repo_var = values[0] else @m2_repo_var || (@project.parent ? @project.parent.eclipse..m2_repo_var : 'M2_REPO') end end |