Использование Eclipse. Возможность запуска тестов из Eclipse IDE, однако «maven install» завершается неудачно и выдает:
package org.junit.platform.runner does not exist
package org.junit.platform.suite.api does not exist
package org.junit.runner does not exist
cannot find symbol symbol: class RunWith
cannot find symbol symbol: class SelectClasses
Это мои зависимости файла pom.xml
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.5.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Почему моя IDE способназапустить тестовые сценарии и саму программу, но сборка maven завершается с ошибкой?