본문 바로가기
소프트웨어 개발/JAVA

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test

by 인생은즐겁게 2022. 12. 3.
반응형

 

오류

메이븐 ( maven) 인스톨시 아래와 같은 오류가 발생

 

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test

 

개발 환경

- jdk type : ms openjdk 17

- string boot version : 2.7.7

- tool : vscode

 

해결 방법

 

 

pom.xml 파일에서 수정하여 해결

 <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.19.1</version>
        </plugin>
  </plugins>
반응형

댓글