1

我的项目结构如下:

  • 应用
  • 测试
  • 文档
  • 图书馆
    • 曾德
    • 我的库

我设置了我的 JenkinsCLI 来进行 PHP_Code_Sniffer 分析等应用程序和库/My_Lib。现在我需要设置 PHP_CodeBrowser 来浏览 applivation 和 library/My_Lib。但只有这两个我不想设置 PHP_CodeBrowser 来浏览项目中的所有文件。

是否有可能并且有任何线索如何做到这一点?

我的 PHP_CodeBrowser 蚂蚁任务。

<target name="phpcb"
     description="Aggregate tool output with PHP_CodeBrowser">
    <exec executable="phpcb">
        <arg line="--log    ${basedir}/build/logs
          --source ${source}
          --output ${basedir}/build/code-browser" />
    </exec>
</target>

感谢您的回复。

4

1 回答 1

1

来自phpcb --help

-s source, --source=source      Path to the project source
                                code. . . .
                                Can be given multiple times

所以试试

<target name="phpcb"
     description="Aggregate tool output with PHP_CodeBrowser">
    <exec executable="phpcb">
        <arg line="--log    ${basedir}/build/logs
          --source ${source}/application
          --source ${source}/library/My_Lib
          --output ${basedir}/build/code-browser" />
    </exec>
</target>
于 2011-05-24T22:04:31.247 回答