减轻 Maven pom.xml 文件冗长(或:粉丝对 Maven 的批评)

我喜欢maven。我甚至非常非常喜欢它。自从我从 Ant 切换到它以来,我节省了大量的工作时间,构建构建文件,管理依赖项等,并在我的源代码管理存储库中节省了大量空间。

问题是 maven 文件太冗长。不是说Ant文件不那么冗长,但它们的详细程度适合它们所做的事情。

例如,与其写

<dependencies>
<dependency>
    <groupId>commons-logging</groupId>
    <artifactId>commons-logging</artifactId>
    <version>1.1.1</version>
<dependency>
    <groupId>com.myosproject</groupId>
    <artifactId>superlibrary</artifactId>
    <version>7.5</version>
</dependency> 
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>3.8.1</version>
    <scope>test</scope>
  </dependency>
</dependencies> 

我想写一些类似的东西

<dependencies>
    commons-logging/commons-logging/1.1.1
    com.myosproject/superlibrary/7.5
    test:junit/junit/3.8.1
</dependencies>

或者代替

<build>
    <plugins>
        <plugin>
             <artifactId>maven-compiler-plugin</artifactId>
                 <configuration>
                     <source>1.5</source>
                     <target>1.5</target>
                 </configuration>
        </plugin>
    </plugins>

我想要

<build version="1.5"/>

和(最后一个例子,我们完成了),而不是写

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>native2ascii-maven-plugin</artifactId>
    <executions>
        <execution>
            <goals>
                <goal>native2ascii</goal>
            </goals>
            <configuration>
            <encoding>UTF8</encoding>
                </configuration>
        </execution>
     </executions>
</plugin>

我不想什么都不写。也就是说,maven 会检测 native2ascii 文件夹的存在,并默认执行正确的操作

我知道我正在将内置功能与插件和其他东西混合在一起,但请尝试从maven用户的角度来看待,他对该工具非常满意,但认为他可以更快乐。

所以:

  1. 有没有办法将maven配置为这样工作?(这样做是明智的)

  2. 有没有另一个我不知道的工具可以做到这一点?


答案 1

Maven配置肯定是冗长的,Maven 3旨在解决这个问题(请参阅这些视频以获取一些想法),并且Maven 2有一个插件,允许在YAML中定义配置。还有一个实验性的“简洁”分支,支持属性,从而在一定程度上减小了配置的大小。

例如:

groupId: org.twdata.maven
artifactId: maven-yamlpom-plugin
version: 1.0-SNAPSHOT
packaging: maven-plugin
name: YAML POM Plugin
dependencies:
  - { groupId: org.apache.maven, artifactId: maven-plugin-api, version: 2.0 }
  - { groupId: SnakeYAML, artifactId: SnakeYAML, version: 1.1 }
  - { groupId: commons-io, artifactId: commons-io, version: 1.4 }
  - { groupId: dom4j, artifactId: dom4j, version: 1.4 }
  - { groupId: junit, artifactId: junit, version: 3.8.1, scope: test }
  - { groupId: xmlunit, artifactId: xmlunit, version: 1.2, scope: test }
build:
  plugins:
    - artifactId: maven-compiler-plugin
      configuration:
    source: 1.5
    target: 1.5
repositories:
  - id: snakeyaml
    name: SnakeYAML repository
    url: http://snakeyamlrepo.appspot.com/repository

使用 Maven 2,您可以通过在父项目中定义通用配置来缓解冗长性,在您引用的示例中,依赖项都可以在父项目中定义,或者在父项目的依赖项管理部分中定义,以便子项目可以将 junit 依赖项声明为

<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
</dependency>

这是一个小小的改进。

插件既可以在父级中声明,也不需要在子级中定义。


答案 2

我完全同意你的观点,pom.xml的某些部分可能会被压缩,特别是部分。<dependencies>

我真的很喜欢常春藤声明依赖关系的方式:

<dependencies>
    <dependency org="commons-lang" name="commons-lang" rev="2.0"/>
    ...

我看过一篇博客文章,它提出了一种实验性工具来创建依赖关系,就像Ivy所做的那样。但是,我从未尝试过。


推荐