通过google sort pom插件在依赖项之间添加一个新行

时间:2013-11-05 14:36:58

标签: maven maven-3

有没有办法通过google sort 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>

2 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:0)

它只是一个XML文件

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