在 pom.xml 中添加 cucumber-junit-platform-engine 依赖项后,Intellij mvn install 在 testComplile 期间抱怨“无法访问 <package>”

问题描述 投票:0回答:3

我计划在 Maven 中使用 Cucumber Test 和 Junit 5。所以我按照cucumber安装不同的maven依赖。我添加了一个运行程序类来执行我的黄瓜测试

package pirate;
import org.junit.platform.suite.api.ConfigurationParameter;
import org.junit.platform.suite.api.IncludeEngines;
import org.junit.platform.suite.api.SelectClasspathResource;
import org.junit.platform.suite.api.Suite;

import static io.cucumber.junit.platform.engine.Constants.GLUE_PROPERTY_NAME;

@Suite
@IncludeEngines("cucumber")
@SelectClasspathResource("pirate")
@ConfigurationParameter(key = GLUE_PROPERTY_NAME, value = "pirate")
public class Runner {}

我还在

pirate
文件夹下创建了一个新文件夹名称
resources
,并将所有
.feature
文件移至该新文件夹中。 但是当我执行
mvn clean install
时,该命令在 testCompile 处失败: enter image description here 编译器好像无法读取包名? 下面是我的 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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>org.example</groupId>
  <artifactId>onetwothree</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>onetwothree</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <build>
    <testSourceDirectory>src/test/java</testSourceDirectory>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.8.1</version>
        <configuration>
          <source>11</source>
          <target>11</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>3.0.0-M5</version>
        <configuration>
          <properties>
            <configurationParameters>
              cucumber.junit-platform.naming-strategy=long
            </configurationParameters>
          </properties>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter</artifactId>
      <version>5.9.0</version>
    </dependency>
    <dependency>
      <groupId>io.cucumber</groupId>
      <artifactId>cucumber-java</artifactId>
      <version>7.8.1</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>io.cucumber</groupId>
      <artifactId>cucumber-junit-platform-engine</artifactId>
      <version>7.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.platform</groupId>
      <artifactId>junit-platform-suite</artifactId>
      <version>1.9.0</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

我的项目结构是:

enter image description here

但是如果我注释掉

cucumber-junit-platform-engine
中的
pom.xml
依赖项,错误就会消失,但不会运行黄瓜测试。我在这里错过了什么吗?

不确定是否相关,但错误消息之一如下:

[ERROR] error reading /Users/xx/.m2/repository/org/junit/platform/junit-platform-engine/1.9.1/junit-platform-engine-1.9.1.jar; zip file is empty
[ERROR] /Users/xx/Desktop/zz/src/test/java/pirate/Runner.java:[1,1] cannot access pirate
  ZipException opening "junit-platform-engine-1.9.1.jar": zip END header not found
java maven intellij-idea junit cucumber
3个回答
1
投票

Maven:运行 maven 时打开 zip 文件时出错

按照以下步骤修复“无法访问”问题。


0
投票

您是否尝试过使用与测试 cucumber-junit-platform-engine 依赖项不同的范围?


0
投票

在存储 pom.xml 文件的 mac 终端中尝试了此命令。 “mvn 依赖项:清除本地存储库” 注意:在执行此命令之前,请确保您的路径应指向 pom.xml 文件夹。 然后执行maven Clean,然后按照以下步骤进行maven install。

  1. 点击右上角的 Maven 选项卡。
  2. 单击项目名称左侧的箭头。
  3. 点击生命周期选项中的箭头。
  4. 单击清洁选项。
  5. 单击安装按钮。 请参阅下图。
© www.soinside.com 2019 - 2024. All rights reserved.