Eclipse Juno has some problems when creating a Maven project, the best way is to create a Maven project, create Java and transform it.
Juno also has a problem with configuring the Maven lifecycle, in creating, compiling, installing. so please turn off your build automatically.
Follow the instructions below to resolve this issue.
, Eclipse .
goto- > window- > prefernces- > General- > .
-, Manaul .
-, , , "".
.
Goto- > window- > prefernces- > Maven- > user settings
, xml settings.xml, .
: users\your name.m2
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository/>
<interactiveMode/>
<usePluginRegistry/>
<offline/>
<pluginGroups/>
<servers/>
<mirrors/>
<proxies>
<proxy>
<id>myproxy</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy name</host>
<port>number</port>
<username></username>
<password></password>
<nonProxyHosts>localhost,127.0.0.1</nonProxyHosts>
</proxy>
</proxies>
<profiles/>
<activeProfiles/>
</settings>
, ,
.
.
.
- mvn clean
- mvn
- mvn install
, .