Maven не может загрузить maven-psteclipse-plugin: jar: 1.0.3 - PullRequest
0 голосов
/ 21 апреля 2020

У меня есть плагин eclipse rcp, для которого я настраиваю сборку Maven

Вся конфигурация выполнена после прочтения этой статьи - https://www.eclipse.org/articles/Article-Eclipse-and-Maven2/index.html

Теперь, пока я попробуйте создать jar-файл для плагина с помощью команды 'mvn install -U', я получаю следующую ошибку

[INFO] Scanning for projects...                                                                                    
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-psteclipse-plugin/1.0.3/maven-psteclipse-plugin-1.0.3.pom                                                                               
[WARNING] The POM for org.apache.maven.plugins:maven-psteclipse-plugin:jar:1.0.3 is missing, no dependency information available
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-psteclipse-plugin/1.0.3/maven-psteclipse-plugin-1.0.3.jar                                                                               
[ERROR] 
[ERROR] Some problems were encountered while processing the POMs:
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-eclipse-plugin is missing. @ line 64, column 12                                                                                                           
[ERROR] Unresolveable build extension: Plugin org.apache.maven.plugins:maven-psteclipse-plugin:1.0.3 or one of its dependencies could not be resolved: Could not find artifact org.apache.maven.plugins:maven-psteclipse-plugin:jar:1.0.3 in central (https://repo.maven.apache.org/maven2) @
 @                                                                                                                 
[ERROR] The build could not read 1 project -> [Help 1]                                                             
[ERROR]
[ERROR]   The project com.my.plugin:1.0.0 (C:\temp_ws\com.my.plugin\pom.xml) has 1 error
[ERROR]     Unresolveable build extension: Plugin org.apache.maven.plugins:maven-psteclipse-plugin:1.0.3 or one of its dependencies could not be resolved: Could not find artifact org.apache.maven.plugins:maven-psteclipse-plugin:jar:1.0.3 in central (https://repo.maven.apache.org/maven2) -> [Help 2]
[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/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/PluginManagerException

Может кто-нибудь сообщить мне, в каком репозитории я могу найти 'maven-psteclipse- артефакт плагина и помощь в решении этой проблемы

...