Unable to view Convert to Maven in Eclipse Juno IDE for J2EE

While I was working on issue of converting my Java Project to Maven, I found that there is no options like configure-> "convert to Maven Project" on my current working project which is being discussed in existing forums.

Solution :
You need to add M2E(Maven Integration for Eclipse Plugin) to Eclipse Juno J2EE IDE from location http://download.eclipse.org/technology/m2e/releases

Apache Solr and SolrJ Maven Dependancies

While I was developing Solr application using Solrj, there was confusion (which is always :) ) of which maven dependencies to be included in Pom.xml. Hence thought to share here.
Please don't miss to add M2_REPO classpath variable pointing to repository directory so you can easily import required library into your Java Project.

Maven Dependencies for Developing application with Solr (version 4.1) are followed as :

1. Solrj Dependencies
<dependency>
           <artifactId>solr-solrj</artifactId>
           <groupId>org.apache.solr</groupId>
           <version>4.1.0</version>
           <type>jar</type>
    </dependency>

2. Solr-core Dependencies
<dependency>
           <artifactId>solr-core</artifactId>
           <groupId>org.apache.solr</groupId>
           <version>4.1.0</version>
           <type>jar</type>
    </dependency>
    <dependency>
           <groupId>javax.servlet</groupId>
           <artifactId>servlet-api</artifactId>
           <version>2.5</version>
    </dependency>