X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=e8abd5d7de8374c950242b5a578ae9d481a72701;hb=abe810fc378cb820099b722b83f9e9f2c3c1f04b;hp=8f72cd7ffdff25deab7dc7f1e0f1e715b3d145a7;hpb=a0a267952defd3397de25969ff8c2d28c8f37a2c;p=gitmo%2FMooseX-StrictConstructor.git diff --git a/Build.PL b/Build.PL index 8f72cd7..e8abd5d 100644 --- a/Build.PL +++ b/Build.PL @@ -1,19 +1,22 @@ use strict; use warnings; -require 5.00601; +require 5.008; use Module::Build; -my $builder = Module::Build->new - ( module_name => 'MooseX::StrictConstructor', - license => 'perl', - requires => { 'Moose' => '0.55_04', - '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();