Add repository resource to all the MI Makefile.PLs
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
CommitLineData
e44a7c2f 1use inc::Module::Install 0.87;
1af16f71 2
27bf2c72 3if( -e 'MANIFEST.SKIP' ) {
4 system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' );
5}
6
d0599b6d 7perl_version '5.008001';
8
1af16f71 9name 'Catalyst-Plugin-Authentication';
10all_from 'lib/Catalyst/Plugin/Authentication.pm';
11
1af16f71 12requires 'Catalyst::Runtime';
13requires 'Class::Inspector';
87a5427f 14requires 'MRO::Compat';
1af16f71 15requires 'Catalyst::Plugin::Session' => '0.10';
16
ec9c7364 17test_requires 'Test::More';
d0599b6d 18test_requires 'Test::Exception';
007228c1 19test_requires 'Test::MockObject';
ec9c7364 20
1af16f71 21auto_install;
46e18596 22resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Plugin-Authentication/';
23
1af16f71 24WriteAll;