We configed the MyEclipse 7.1.1 with the Tomcat server 5.5.26 (We installed locally, we do not use the embedded Tomcat 6 server). Seems everything works just fine.
but however, the MyEclipse add the following denpendency to the project pom.xml file.
When we do the build using maven2 (mvn compile…) in a unix machine, it try to download these jars, and it failed to download them. Questions here
1. can MyElipse not update th pom.xml file ? how ? – this is the prefer solution
We do not want the MyEclipse to update the pom.xml by adding any dependency.
2. Looks like the MyEclipse do download the jars and put them on my local .m2 folder
for example,
C:\Documents and Settings\smeng\.m2\repository\javax\faces\jsf-api\1.2_04
Where did MyEclipse get these jars from ? where these jar coming from ? which org/company ?
3. The frist 2 jars version 1.2_04 seems not listed in maven repository yet.
(http://repo1.maven.org/maven2/javax/faces/jsf-impl)
Thanks
Michael Meng
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>1.2_04</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>1.2_04</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
<version>5.0-1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>