Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 497 Bytes

README.adoc

File metadata and controls

30 lines (22 loc) · 497 Bytes

Gradle Perl Mod Plugin

This plugin allows you to create CPAN compatible modules using Module::Starter

Usage

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 'author@email.address'
    builder 'Module::Build'
}