X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=8815ba0e3c29eec02829cbce86dd241104a1b786;hb=a665e0bcbb95d1e57d597fda6c9834bf77f43d48;hp=87bb2080b5df953442c6c52058f0a04baf6d6d21;hpb=0c61e88b77a0b8537495e6bb3fb893136453b35d;p=gitmo%2FMooseX-StrictConstructor.git diff --git a/Build.PL b/Build.PL index 87bb208..8815ba0 100644 --- a/Build.PL +++ b/Build.PL @@ -1,17 +1,22 @@ use strict; use warnings; +require 5.008; + use Module::Build; -my $builder = Module::Build->new - ( module_name => 'MooseX::StrictConstructor', - license => 'perl', - requires => { 'Moose' => 0, - '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();