有没有办法打印多模块maven项目的结构?

时间:2012-04-19 12:00:49

标签: maven printing structure pretty-print multi-module

我正面临一个相当大的多模块maven项目。我想看看root(parent)项目是如何以groupId:artifactId的形式由子项目/子项目组成的(可能有一些标识来反映层次结构。

当然我可以编写自己的插件来获取此打印输出,但我认为必须有一些可用的架子。

3 个答案:

答案 0 :(得分:6)

你好迟到的回答,但我已经在maven资源库中添加了一个插件:

<dependency>
    <groupId>org.qunix</groupId>
    <artifactId>structure-maven-plugin</artifactId>
    <version>0.0.1</version>
</dependency>

要运行该插件,您需要添加到您的pom中,如下所示:

<build>
        <plugins>

            <plugin>
                <groupId>org.qunix</groupId>
                <artifactId>structure-maven-plugin</artifactId>
                <version>0.0.1</version>
                <inherited>false</inherited>
                <executions>
                    <execution>
                        <phase>compile</phase>
                        <goals>
                            <goal>
                                printModules
                            </goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>

    </build>

然后输出如下:

   [INFO] --- structure-maven-plugin:0.0.1:printModules (default) @ test ---
[INFO] 

Project structure (all modules):



                test
                |
                |__ a
                |
                |__ b
                |
                |
                \__ c
                    |
                    |__ d
                    |
                    |__ e
                    |
                    |__ f

如果要打印所有模块的文件,请使用以下目标: printAll ,或者如果您只想使用文件夹,请使用目标: printFolders <inherited>表示不在模块中执行插件,<ignore>表示使用正则表达式跳过此文件。

编辑:你永远不会从github中获取版本:https://github.com/buraksarac/MavenStructurePlugin

答案 1 :(得分:0)

到目前为止我还没有遇到过这样的插件,甚至没有听说过。谷歌也不了解它,所以很可能你必须编写自己的插件或尝试解析mvn dependency:tree或只是反应堆构建顺序,可能使用大量的控制台输出流等等。

答案 2 :(得分:0)

我认为mvn dependency:tree是可行的。

你应该试试这个:

mvn dependency:tree -DoutputFile=target/dependencies.txt
cat target/dependencies.txt | awk -F ':' '{print $1":"$2}'

这样,你会有一个很好的依赖树,有缩进但没有范围,版本和类型:)