The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Maven::SettingsLoader - The loader for settings files

VERSION

version 1.11

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([$global_path], [$local_path], %properties)

Will load $global_path, then overlay $local_path, 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.