Не удалось выполнить цель org. apache .maven.plugins: maven-surefire-plugin: 2.12: test (default-test) с Java 1.7 - PullRequest
0 голосов
/ 16 января 2020

Мой проект основан на модуле, ниже представлена ​​структура

  • POM Parent. xml
    • module1 POM. xml
    • module2 POM. xml
    • module3 POM. xml
    • module4 POM. xml

Я ссылался на следующую ссылку переполнения стека Не удалось выполнить цель. apache .maven.plugins: maven-surefire-plugin: 2.12: test (default-test) для проекта. и вот мои выводы

  • В моем проекте нет maven-surefire-plugin, добавлен maven-surefire-plugin в pom. xml (parent & all modules)
  • попытался добавить только в родительский pom. xml
  • используется последняя версия - 3.0.0M3

Сообщение об ошибке:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M3:test (default-test) on project provider-aggregate-service-provider-common: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M3:test failed: Plugin org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M3 or one of its dependencies could not be resolved: Failed to collect dependencies at org.apache.maven.plugins:maven-surefire-plugin:jar:3.0.0-M3 -> org.apache.maven.surefire:maven-surefire-common:jar:3.0.0-M3: Failed to read artifact descriptor for org.apache.maven.surefire:maven-surefire-common:jar:3.0.0-M3: Could not transfer artifact org.apache.maven.surefire:maven-surefire-common:pom:3.0.0-M3 from/to default (https://my/artifactory/remote-repos/): sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException

Эта ошибка появляется только при запуске проекта с Java 1.7 и Java 1.8 проект работает нормально

...