Maven战争 - '包装'有价值的'战争'是无效的。聚合器项目需要' pom'作为包装

时间:2017-07-27 13:04:37

标签: java maven spring-mvc war

我有一个maven项目,以前使用以下结构,除了war包装,构建插件和webapp /:

Project structure 以下父pom.xml构建周期

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <warName>${project.artifactId}</warName>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.8</version>
                <executions>
                    <execution>
                        <id>install</id>
                        <phase>install</phase>
                        <goals>
                            <goal>sources</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.5</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.6.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
    <finalName>ConcertLiveCheck</finalName>
</build>

但是,每当我尝试将我的项目编译为战争时,我都会收到以下错误

    'packaging' with value 'war' is invalid. Aggregator projects require 'pom' as packaging

事先,我正在编译为pom,没有maven war插件,每个maven模块都正确编译到它的目标,我的项目正在运行。 但是,由于我打算在Web服务器上运行我的项目,我正在尝试编译到POM,以后再自动部署到我的Web服务器。

有关解决问题的任何提示吗?

谢谢,

2 个答案:

答案 0 :(得分:5)

您的项目是父项(聚合器),它包含子模块(许多不同的项目)。

父母必须拥有pom类型。如果你想加一场战争,它必须是一个儿童模块。

在您的父母中,您将拥有以下内容:

 <modules>
    <module>example-ear</module>
    <module>example-war</module>
  </modules>

然后你的战争项目将如下所示:

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>com.greg</groupId>
    <artifactId>ear-example</artifactId>
    <version>1.0-SNAPSHOT</version>
  </parent>

  <artifactId>example-war</artifactId>
  <packaging>war</packaging>

  <name>com.greg</name>
  <url>http://maven.apache.org</url>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <dependencies>
        ...
        ...
        ...
  </dependencies>
  <build>
       ...
       add all your war plugins here
       ...
  </build>
</project>

请参阅https://maven.apache.org/guides/mini/guide-multiple-modules.html

答案 1 :(得分:0)

就我而言,我错过了pom中的<plugin>以下。

<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>