Я импортировал проект maven в Eclipse Версия: 2018-09 (4.9.0), но у меня есть эта ошибка в файле pom. У меня уже есть тот же проект на другом компьютере, и он работает нормально. Проект SpringBoot 2.0.6. ВЫПУСК
Project build error: Non-resolvable parent POM for es.teatreDeGuerrila:teatreDeGuerrilaCloudApp:1.0.0-SNAPSHOT: Failure to transfer org.springframework.boot:spring-boot-starter-parent:pom:2.0.6.RELEASE from
https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error:
Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:2.0.6.RELEASE from/to central (https://repo.maven.apache.org/maven2): connect timed out and
'parent.relativePath' points at no local POM
и у меня много ошибок компиляции в классах, например
The import org.springframework cannot be resolved
из командной строки, используя mvn install -Dmaven.test.skip=true
, все работает нормально.
и я уже прокси в Eclipse как Manual с теми же настройками, что и у меня в файле ../maven/conf/settings.xml
<proxy>
<id>httpproxy</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy.teatre.guerrila.int</host>
<port>8080</port>
<nonProxyHosts>localhost|127.0.0.1</nonProxyHosts>
</proxy>
<proxy>
<id>httpsproxy</id>
<active>true</active>
<protocol>https</protocol>
<host>proxy.teatre.guerrila.int</host>
<port>8443</port>
<nonProxyHosts>localhost|127.0.0.1</nonProxyHosts>
</proxy>
</proxies>
Настройки Eclipse