0

有没有办法通过谷歌排序 pom 插件或任何其他插件在每个依赖项之间添加新行。

当前 POM,通过 google sort pom 插件排序

<dependency>
    <groupId>org.mockito</groupId>
    <artifactId>mockito-all</artifactId>
    <version>1.8.5</version>
</dependency>
<dependency>
    <groupId>org.powermock</groupId>
    <artifactId>powermock-core</artifactId>
    <version>1.4.10</version>
</dependency>

我正在努力实现

<dependency>
    <groupId>org.mockito</groupId>
    <artifactId>mockito-all</artifactId>
    <version>1.8.5</version>
</dependency>

<dependency>
    <groupId>org.powermock</groupId>
    <artifactId>powermock-core</artifactId>
    <version>1.4.10</version>
</dependency>

我当前的 pom 插件

<plugin>
    <groupId>com.google.code.sortpom</groupId>
    <artifactId>maven-sortpom-plugin</artifactId>
    <version>${com.google.code.sortpom}</version>
    <configuration>
        <predefinedSortOrder>custom_1</predefinedSortOrder>
        <sortDependencies>groupId,artifactId</sortDependencies>
        <sortPlugins>groupId,artifactId</sortPlugins>
        <sortProperties>false</sortProperties>
        <createBackupFile>false</createBackupFile>
        <lineSeparator>\r\n</lineSeparator>
        <expandEmptyElements>false</expandEmptyElements>
        <keepBlankLines>true</keepBlankLines>
        <nrOfIndentSpace>-1</nrOfIndentSpace>
        <verifyFail>Warn</verifyFail>
    </configuration>
    <executions>
        <execution>
            <goals>
                <goal>sort</goal>
            </goals>
            <phase>compile</phase>
        </execution>
    </executions>
</plugin>
4

2 回答 2

1

目前 maven-sortpom-plugin 没有在依赖项之间插入空行的自动方式。

但是,如果您在两个现有依赖项之间有一个空行,则插件不会在排序期间删除该行,因为您使用了配置选项<keepBlankLines>true</keepBlankLines>

于 2014-02-04T19:12:08.957 回答
0

它只是一个 XML 文件

只需使用您的 IDE 内置的 XML 格式化程序来格式化pom.xml您想要的文件。Eclipse 和 Intellij IDEA 都有 XML 文件的格式化程序。

于 2013-11-05T14:54:31.913 回答