How to set the bug tracker in your CPAN Perl module

To set the CPAN bug tracker to a different bug tracker than the default rt.cpan.org bug tracker, using ExtUtils::MakeMaker, in Makefile.PL, use

WriteMakefile (
    META_MERGE => {
        resources => {
            bugtracker => 'http://your.server.com/url/of/ your/choice',
        },
    },
);

The module CPAN::Test::Dummy::Perl5::NoBugTracker demonstrates how to remove the bug tracker completely from search.cpan.org.


Copyright © Ben Bullock 2009-2023. All rights reserved. For comments, questions, and corrections, please email Ben Bullock (benkasminbullock@gmail.com) or use the discussion group at Google Groups. / Privacy / Disclaimer