java - unable to see Maven In Eclipse -
i installed m2e plugin in eclipse mars , maven installed in system unable see maven option while i'm trying import maven project , unable see maven option while trying configure existing java project maven project.
if have correct (64b) versions, follow this steps.
installing maven in windows
extract maven zipped file in folder (preferible
c:\program files\
)add
bin
directory of created directoryapache-maven-3.0.3
path
environment variable.check environment variable value e.g.
echo %java_home%
must like:
c:\program files\java\jdk1.7.0_51
adding maven folder path:
- add unpacked distribution’s
bin
directory userpath
environment variable opening system properties (winkey + pause) - select “advanced” tab, , “environment variables” button
- selecting path variable in user variables value , addd
c:\program files\apache-maven-3.0.9\bin
. check folder same!!! - if not set, same dialog can used set
java_home
location ofjdk
, e.g.c:\program files\java\jdk1.7.0_51
- add unpacked distribution’s
verifying
- open new command prompt (winkey + r
- type
cmd
- run
mvn -v
verify installation.
Comments
Post a Comment