黄瓜Java最新版本

时间:2020-06-24 00:32:03

标签: java cucumber

从那里我可以获得最新的Test Runner类格式和Java的Cucumber依赖关系。我有旧的依赖关系,并且可以正常工作,但是现在这些都太旧了,没有。我创建了新的POM文件,但是现在我的TestRunner文件有红色错误行,并且我无法运行测试。我在下面复制了我的新旧依赖。请让我知道我在这里想念的东西。我需要更多的依赖项还是足够的依赖项?

旧的POM :(对于旧的依赖项,当我尝试运行功能文件时出现以下错误:

cucumber.runtime.CucumberException:未知选项:--plugin

<dependencies>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-picocontainer</artifactId>
        <version>1.1.8</version>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-junit</artifactId>
        <version>1.1.8</version>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.11</version>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-server</artifactId>
        <version>2.42.2</version>
    </dependency>
</dependencies>

NEW POM: (if I use following  new dependencies, my TESTRUNNER  has red lines under"@CucumberOptions"




 <!-- https://mvnrepository.com/artifact/info.cukes/cucumber-picocontainer -->
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-picocontainer</artifactId>
        <version>1.2.5</version>
    </dependency>
    
    <!-- https://mvnrepository.com/artifact/info.cukes/cucumber-junit -->
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-junit</artifactId>
        <version>1.2.5</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/junit/junit -->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.13</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-server -->
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-server</artifactId>
        <version>3.141.59</version>
    </dependency>






    
    
    

1 个答案:

答案 0 :(得分:0)

否,我手动更新了pom.xml文件。从maven存储库中获得了新的依赖项。