我在父目录下的不同位置有groovy脚本。目录结构有点像这样:
magento
└── magento.groovy
└── models
├── cart.groovy
├── catalog.groovy
├── customer.groovy
├── directory.groovy
├── filter.groovy
├── inventory.groovy
├── products.groovy
└── salesorder.groovy
我想生成groovy doc并在父目录下包含每个groovy脚本。
我尝试在父目录上运行命令,它只获取其中的命令,显然,子文件夹中的那些不包括在内:
groovydoc \
-classpath /opt/groovy-2.4.4/lib/ \
-d /opt/groovy-test/test/magento \
-windowtitle "Magento Groovydoc Example" \
-header "Test Groovy doc for Magento" \
-doctitle "Magento Test Groovydoc" *.groovy
如果除了命令行之外还有更好的方法吗?我也试过这个插件,但没有运气https://github.com/rvowles/groovydoc-maven-plugin
谢谢!
答案 0 :(得分:0)
此bash脚本对我有用
source_files=`find {path-to-your-dir}/magento/ -type f \( \
\( \
-name "*.java" \
-or -name "*.groovy" \
\) \
! \
\( \
-name "PastingSomeFileNamesHereYouCanExludeSomething.java" \
-or -name "SomeAdditionalFile.groovy" \
\) \
\)`
groovydoc -verbose --debug -public\
-d {path-to-your-magento-dir-docs}\
-doctitle "Title"\
-header "Header"\
-footer "Footer"\
-windowtitle "WindowTitle"\
$source_files