X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=e8abd5d7de8374c950242b5a578ae9d481a72701;hb=abe810fc378cb820099b722b83f9e9f2c3c1f04b;hp=863850ca978d212aaa4ff047912c2ba47246e8b1;hpb=0a0390cc1aa08bb9a5f2727fe203d0a3cfdc5757;p=gitmo%2FMooseX-StrictConstructor.git diff --git a/Build.PL b/Build.PL index 863850c..e8abd5d 100644 --- a/Build.PL +++ b/Build.PL @@ -5,15 +5,18 @@ require 5.008; use Module::Build; -my $builder = Module::Build->new - ( module_name => 'MooseX::StrictConstructor', - license => 'perl', - requires => { 'Moose' => '0.56', - 'Test::More' => '0', - }, - create_makefile_pl => 'passthrough', - create_readme => 1, - sign => 1, - ); +my $builder = Module::Build->new( + module_name => 'MooseX::StrictConstructor', + license => 'perl', + requires => { + 'Moose' => '0.94', + }, + build_requires => { + 'Test::More' => '0.88', + }, + create_makefile_pl => 'traditional', + create_readme => 1, + sign => 1, +); $builder->create_build_script();