2

在我的项目中,我有一个带有以下 pluginManagement 配置的父 pom:

<build>
  <pluginManagement>
    <plugins>
      ...
      <plugin>
        <groupId>org.apache.maven.plugin</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <encoding>utf-8</encoding>
        </configuration>
      </plugin>
      ...
    </plugins>
  </pluginManagement>
</build>

现在,当我尝试激活子模块中的插件时。我收到此错误:

'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 42, column 12

在我的子模块中,我有这个插件配置:

<build>
  <plugins>
    <plugin>
      <artifactId>maven-compiler-plugin</artifactId>
    </plugin>
  </plugins>
</build>

为什么模块没有找到其父 pom 中指定的版本属性?

4

1 回答 1

1

首先是因为您使用了错误的 groupId。正确的是org.apache.maven.plugins而不是org.apache.maven.plugin。此外,您已经定义了 maven-compiler-plugin 的旧版本(2.5.1 而不是 3.0)

于 2012-12-21T10:35:35.470 回答