maven目标未附加到阶段

wlp8pajw  于 2021-07-13  发布在  Java
关注(0)|答案(1)|浏览(260)

我正在尝试运行一些selenium测试,但是将jetty的启动附加到maven的预集成测试阶段是行不通的。所以我试着调查这个问题,总的来说,maven并没有在我指定的阶段执行我的目标。
我找到了这个例子并复制了它。我创建了一个插件,当我显式调用它时,它可以正常工作。但是当我尝试将它附加到validate阶段并运行mvn validate时,我没有看到“你好!!!”输出。它只是向我展示了构建成功,而没有调用howdy world目标:/(这与我的jetty没有在集成测试阶段启动是一致的)
当验证阶段通过时,如何运行此目标?
以下是我的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.maventest</groupId>
<artifactId>aproject</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>aproject</name>
<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
</dependencies>
<build>
<pluginManagement>
    <plugins>
        <plugin>
            <groupId>com.maventest</groupId>
            <artifactId>maven-howdy-plugin</artifactId>
            <version>1.0-SNAPSHOT</version>
            <executions>
                <execution>
                    <goals>
                        <goal>howdy-world</goal>
                    </goals>
                    <phase>validate</phase>
                </execution>
            </executions>
        </plugin>
    </plugins>
    </pluginManagement>
</build>
lb3vh1jj

lb3vh1jj1#

你必须这样做:

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <build>
    <pluginManagement>
      <plugins>
        <plugins>
          <plugin>
            <groupId>org.eclipse.m2e</groupId>
            <artifactId>lifecycle-mapping</artifactId>
            <version>1.0.0</version>
            <configuration>
              <lifecycleMappingMetadata>
                <pluginExecutions>
                  <pluginExecution>
                    <pluginExecutionFilter>
                      <groupId>com.maventest</groupId>
                      <artifactId>maven-howdy-plugin</artifactId>
                      <versionRange>[1.0.0,)</versionRange>
                      <goals>
                        <goal>howdy-world</goal>
                      </goals>
                    </pluginExecutionFilter>
                    <action>
                      <ignore />
                    </action>
                  </pluginExecution>
                </pluginExecutions>
              </lifecycleMappingMetadata>
            </configuration>
          </plugin>
          <plugin>
            <groupId>com.maventest</groupId>
            <artifactId>maven-howdy-plugin</artifactId>
            <version>1.0-SNAPSHOT</version>
          </plugin>
        </plugins>
    </pluginManagement>
    <!-- The following will really execute the plugin -->
    <plugins>
      <plugin>
        <groupId>com.maventest</groupId>
        <artifactId>maven-howdy-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>howdy-world</goal>
            </goals>
            <phase>validate</phase>
          </execution>
        </executions>
      </plugin>
    </plugins>

  </build>
</project>

这个 pluginManagement 该部分只用于定义插件的版本和配置,但不会在生命周期内真正执行这些插件。

相关问题