NAME

Maven::SettingsLoader - The loader for settings files

VERSION

version 1.15

SYNOPSIS

use Maven::SettingsLoader qw(load_settings);
my $settings = load_settings(
    [
        '/path/to/global/settings.xml',
        '/path/to/user/settings.xml',
    ],
    {
        'env.M2_HOME' => $ENV{M2_HOME},
        'user.home' => $ENV{HOME}
    });

DESCRIPTION

Used by Maven::Maven to load settings files.

EXPORT_OK

load_settings(\@settings_files, \%properties)

Will load \@settings_files in order, interpolating placeholders using the values from $properties.

AUTHOR

Lucas Theisen <lucastheisen@pastdev.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Lucas Theisen.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

SEE ALSO

Please see those modules/websites for more information related to this module.