gpt4 book ai didi

java - maven - 打包后阶段未运行

转载 作者:行者123 更新时间:2023-11-30 02:24:30 25 4
gpt4 key购买 nike

我刚刚开始使用maven。因此,如果这个问题太基础而无法提问,请忽略。

这是我的 pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.abc</groupId>
<artifactId>debug</artifactId>
<packaging>war</packaging>
<name>Debug</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1</version>
<configuration>
<warSourceExcludes>abc/**</warSourceExcludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>default</id>
<phase>generate-sources</phase>
<configuration>
<tasks>
<!-- Some work -->
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>post.package</id>
<phase>post-package</phase>
<configuration>
<tasks>
<echo>This is not running</echo>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

以上运行成功,并且在目标/类中创建了 war 文件,但 post-package 阶段未运行。有什么问题吗?这是因为我没有定义package阶段吗?如果是这样,那么为什么要完成包装呢?

最佳答案

那是因为Maven中没有post-package这样的阶段:

Here是对 Maven 生命周期及其流程的引用。

如果你想在package阶段之后执行特定任务,你最好选择

<execution>
<id>post-package</id>
<phase>pre-integration-test</phase>
<configuration>
<tasks>
<echo>This would run during pre-integration-test phase</echo>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>

关于java - maven - 打包后阶段未运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46014002/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com