forked from jlavallee/tap-harness-junit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
35 lines (32 loc) · 792 Bytes
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'TAP::Harness::JUnit',
license => 'perl',
dist_author => 'Lubomir Rintel (GoodData) <[email protected]>',
dist_version_from => 'lib/TAP/Harness/JUnit.pm',
meta_merge => {
resources => {
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=TAP-Harness-JUnit',
repository => 'https://github.com/jlavallee/tap-harness-junit',
}
},
requires => {
'TAP::Harness' => 3.05,
'File::Temp' => 0,
'TAP::Parser' => 0,
'XML::Simple' => 0,
'Scalar::Util' => 0,
'Test::More' => 0,
'Time::HiRes' => 0,
'Encode' => 0,
},
build_requires => {
'Test::Deep' => 0,
},
configure_requires => {
'Module::Build' => 0.42
}
);
$build->create_build_script;