运行 来自命令行的多个 Maven 配置文件

Running multiple maven profiles from command line

有两个配置文件来为 Web 应用程序构建依赖 jar(一个用于 tomcat,另一个用于 websphere)。我正在尝试的是 运行 将这两个配置文件一次性构建在一起。

mvn help:active-profiles -o -Dmaven.test.skip=true clean install -PTOMCAT,WEBSPHERE

作为这些执行的结果,我们期待 acme-tomcat-0.0.1-SNAPSHOT.jaracme-web -0.0.1-SNAPSHOT.jar 但与这些一起创建的还有默认 jar acme-0.0.1-SNAPSHOT.jar。这似乎是因为默认执行。

如何避免这种默认执行,避免生成默认的acme-0.0.1-SNAPSHOT.jar。我们已经提到了 couple of solutions here in SO to arrive this and also we have 但在这种情况下这对我们没有帮助。 任何指示都会有所帮助。

个人资料配置看起来像

<profiles>
    <profile>
        <id>TOMCAT</id>
        <activation>
            <activeByDefault>false</activeByDefault>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <artifactId>maven-jar-plugin</artifactId>
                    <executions>
                        <execution>
                            <id>tom-jar</id>
                            <phase>package</phase>
                            <goals>
                                <goal>jar</goal>
                            </goals>
                            <configuration>
                                <finalName>${project.artifactId}-tomcat-${project.version}</finalName>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build> 
        <dependencies>
            <dependency>
                <groupId>org.apache.activemq</groupId>
                <artifactId>activemq-core</artifactId>
                <version>5.7.0</version>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>org.apache.geronimo.specs</groupId>
                <artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
                <version>1.0.1</version>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>org.jboss.javaee</groupId>
                <artifactId>jboss-jms-api</artifactId>
                <version>1.1.0.GA</version>
            </dependency>
        </dependencies>
    </profile>
    <profile>
        <id>WEBSPHERE</id>
        <activation>
            <activeByDefault>false</activeByDefault>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <artifactId>maven-jar-plugin</artifactId>
                    <executions>
                        <execution>
                            <id>web-jar</id>
                            <phase>package</phase>
                            <goals>
                                <goal>jar</goal>
                            </goals>
                            <configuration>
                                <finalName>${project.artifactId}-web-${project.version}</finalName>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build> 
        <dependencies>
            <dependency>
                <groupId>org.apache.activemq</groupId>
                <artifactId>activemq-core</artifactId>
                <version>5.4.3</version>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>org.apache.activemq</groupId>
                <artifactId>geronimo-j2ee-management_1.0_spec</artifactId>
                <version>1.0</version>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>org.jboss.javaee</groupId>
                <artifactId>jboss-jms-api</artifactId>
                <version>1.1.0.GA</version>
                <scope>provided</scope>
            </dependency>
        </dependencies>
    </profile>
</profiles>

谢谢, 三

使用来自 Volodymyr Kozubal 的指针,将我的 TOMCAT 配置文件的执行 ID 更改为:

<execution>
   <id>default-jar</id>
   .........
 </execution>

覆盖默认执行。

谢谢大家