生成 groovydoc 并包含子目录

问题描述 投票:0回答:1

我在父目录下的不同位置有groovy 脚本。目录结构有点像这样:

magento
└── magento.groovy
└── models
    ├── cart.groovy
    ├── catalog.groovy
    ├── customer.groovy
    ├── directory.groovy
    ├── filter.groovy
    ├── inventory.groovy
    ├── products.groovy
    └── salesorder.groovy

我想生成 groovy 文档并包含父目录下的每个 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

谢谢!

bash maven groovy groovydoc
1个回答
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
© www.soinside.com 2019 - 2024. All rights reserved.