This plugin allows you to create CPAN compatible modules using Module::Starter
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath 'org.benignbala.gradle.perlmod:gradle-perlmod-plugin:0.1-alpha'
}
}
apply plugin: 'perlmod'
perlmod {
moduleName 'Foo::Bar'
author 'Author Name'
email '[email protected]'
builder 'Module::Build'
}