Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

The buildr documentation on profiles shows how to filter resources using single properties of a profile, e.g.:

Code Block
resources.filter.using :jdbc=>Buildr.settings.profile['jdbc']

However, perhaps you want to apply just all properties of the current profile. As resources.filter.using takes a Hash you can just use Buildr.settings.profile:

Code Block
resources.filter.using Buildr.settings.profile