X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=0d9a065f6d53338f8039812c3fbbcf8ee6250621;hb=6ac87378371b9d19564a03b8c2183e14fa653d97;hp=7ebc22826927205560aba179f1037c66c05a8bec;hpb=b919b4cc08e605f6338a60385bdc6934dc8e60c2;p=catagits%2FCatalyst-Engine-STOMP.git diff --git a/Makefile.PL b/Makefile.PL index 7ebc228..0d9a065 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,10 +1,13 @@ use inc::Module::Install; use 5.008006; +license 'perl'; + name 'Catalyst-Engine-Stomp'; all_from 'lib/Catalyst/Engine/Stomp.pm'; requires 'Catalyst::Engine::Embeddable' => '0.0.1'; +requires 'Catalyst::Action::REST' => undef; requires 'Catalyst::Runtime' => '5.80003'; requires 'Moose' => undef; requires 'MooseX::Workers' => '0.05'; @@ -12,6 +15,11 @@ requires 'Net::Stomp' => '0.34'; requires 'YAML::XS' => '0.32'; requires 'namespace::autoclean' => '0.05'; +test_requires 'Alien::ApacheMQ' => '0.00001'; + +no_index package => 'StompTestApp'; +no_index package => 'StompTestApp::Controller::TestController'; + auto_install; WriteAll;