我如何使用maven的pom.xml运行perl“prove”

时间:2013-07-17 12:23:18

标签: perl maven

codehaus上有一个知道插件可以运行任何bsf语言:

svn checkout https://svn.codehaus.org/mojo/trunk/sandbox/script-maven-plugin .

bsfperl结合使用可用于运行perl脚本。

还有:

http://www.ohloh.net/p/maven-perl-plugin

除此之外,我找不到有关如何运行prove

的任何信息或示例

1 个答案:

答案 0 :(得分:2)

运行外部命令的最简单方法可能是通过exec-maven-plugin。请参阅示例,了解如何将执行绑定到构建阶段。配置如:

    <configuration>
      <executable>perl</executable>
      <arguments>
        <argument>src/main/bin/script.pl</argument>
        <argument>arg1</argument>
        ...
      </arguments>
    </configuration>

将通过Perl运行脚本。