2011-05-24 106 views
1

我的項目結構,如:的多個目錄PHP_CodeBrowser目錄設置

  • 應用
  • 測試
  • 文檔
    • Zend公司
    • My_Lib

我設置了我的JenkinsCLI來對應用程序和庫/ My_Lib進行PHP_Code_Sniffer分析。現在我需要設置PHP_CodeBrowser來瀏覽應用程序和庫/ 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> 

感謝您的回覆。

回答

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> 
+0

非常感謝你,這就是它。 – Vebloud 2011-05-25 09:16:57