-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
33 lines (31 loc) · 982 Bytes
/
Makefile.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
use 5.010001;
use strict;
use warnings;
use ExtUtils::MakeMaker 6.64;
WriteMakefile(
NAME => 'Devel::Cover::Report::SonarGeneric',
VERSION_FROM => 'lib/Devel/Cover/Report/SonarGeneric.pm',
ABSTRACT => 'SonarQube generic backend for Devel::Cover',
AUTHOR => 'Thomas Kratz <[email protected]>',
LICENSE => 'artistic_2',
MIN_PERL_VERSION => 5.010001,
META_MERGE => {
resources => {
license => 'http://www.opensource.org/licenses/artistic-license-2.0',
repository => 'https://github.com/tomk3003/devel-cover-report-sonargeneric',
bugtracker => 'https://github.com/tomk3003/devel-cover-report-sonargeneric/issues'
},
no_index => {directory => ['t']}
},
CONFIGURE_REQUIRES => {
"ExtUtils::MakeMaker" => "6.64",
},
PREREQ_PM => {
"Devel::Cover" => "1.25",
"Path::Tiny" => "0.013",
},
TEST_REQUIRES => {
"JSON::MaybeXS" => 0,
},
test => {TESTS => 't/*.t'}
);