Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12:test (default-test) on project.

前端 未结 28 1524
予麋鹿
予麋鹿 2020-12-03 06:41

I have been trying from a couple of days to resolve the following error but I am unable to resolve it :(

My module\'s pom.xml file is:



        
28条回答
  •  自闭症患者
    2020-12-03 07:05

    I just adjust the cucumber version, because I had a JUnit dependency in a low version compared with the other version of cucumber in my pom file.

    
    
                
                    io.cucumber
                    cucumber-java
                    6.9.0
                
        
                
                
                    io.cucumber
                    cucumber-picocontainer
                    6.9.0
                    test
                
        
                
                
                    io.cucumber
                    cucumber-junit
                    6.9.0
                    test
                
    

提交回复
热议问题