我的项目结构如下:
- 应用
- 测试
- 文档
- 图书馆
- 曾德
- 我的库
我设置了我的 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>
感谢您的回复。