forked from gitpan/TAP-Formatter-JUnit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
22 lines (21 loc) · 642 Bytes
/
Copy pathBuild.PL
File metadata and controls
22 lines (21 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use strict;
use warnings;
use Module::Build;
Module::Build->new(
'module_name' => 'TAP::Formatter::JUnit',
'license' => 'perl',
'dist_author' => 'Graham TerMarsch (cpan@howlingfrog.com)',
'requires' => {
'XML::Generator' => 0,
'TAP::Harness' => 3.12,
'Moose' => 0,
'MooseX::NonMoose' => 0,
'File::Slurp' => 0,
},
'build_requires' => {
'Test::More' => 0,
'IO::Scalar' => 0,
'IPC::Run' => 0,
'Test::XML' => 0,
},
)->create_build_script();