X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=8815ba0e3c29eec02829cbce86dd241104a1b786;hb=e9aeaeb6305b3635e822430527beec873e2b9c47;hp=cab726c81810782cad5b686857e995a33183c237;hpb=8ce99ddba2861ea19c26ebdadceaf1898a544ef8;p=gitmo%2FMooseX-StrictConstructor.git diff --git a/Build.PL b/Build.PL index cab726c..8815ba0 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.73_01', - '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.74', + }, + build_requires => { + 'Test::More' => '0.88', + }, + create_makefile_pl => 'traditional', + create_readme => 1, + sign => 1, +); $builder->create_build_script();